-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (30 loc) · 1.13 KB
/
create-all-pkgs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Create all packages
on: [workflow_dispatch,workflow_call]
permissions: write-all
jobs:
is-ready:
runs-on: ubuntu-22.04
steps:
- name: Check for mandatory artifacts
run: |
wget -nv https://github.com/ton-blockchain/ton/releases/latest/download/ton-linux-arm64.zip
wget -nv https://github.com/ton-blockchain/ton/releases/latest/download/ton-linux-x86_64.zip
wget -nv https://github.com/ton-blockchain/ton/releases/latest/download/ton-win-x86-64.zip
wget -nv https://github.com/ton-blockchain/ton/releases/latest/download/ton-mac-x86-64.zip
wget -nv https://github.com/ton-blockchain/ton/releases/latest/download/ton-mac-arm64.zip
rpm-create:
uses: ./.github/workflows/create-rpm-packages.yml
secrets: inherit
needs: is-ready
deb-create:
uses: ./.github/workflows/create-deb-ppa-packages.yml
secrets: inherit
needs: is-ready
aur-create:
uses: ./.github/workflows/create-aur-packages.yml
secrets: inherit
needs: rpm-create
choco-create:
uses: ./.github/workflows/create-choco-packages.yml
secrets: inherit
needs: is-ready