github actions: use separate job for publishing bootstraps
This commit is contained in:
parent
642d8e5616
commit
399cc87aa9
20
.github/workflows/bootstrap_archives.yml
vendored
20
.github/workflows/bootstrap_archives.yml
vendored
@ -20,6 +20,21 @@ jobs:
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Create bootstrap archive
|
- name: Create bootstrap archive
|
||||||
run: ./scripts/generate-bootstraps.sh --architectures ${{ matrix.arch }}
|
run: ./scripts/generate-bootstraps.sh --architectures ${{ matrix.arch }}
|
||||||
|
- name: Store artifacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: bootstrap-archives-${{ github.sha }}
|
||||||
|
path: "*.zip"
|
||||||
|
publish:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Git clone
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Fetch bootstrap archives
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: bootstrap-archives-${{ github.sha }}
|
||||||
|
path: ./
|
||||||
- name: Create new tag
|
- name: Create new tag
|
||||||
id: get_tag
|
id: get_tag
|
||||||
run: |
|
run: |
|
||||||
@ -42,8 +57,3 @@ jobs:
|
|||||||
file_glob: true
|
file_glob: true
|
||||||
release_name: "Bootstrap archives for Termux application"
|
release_name: "Bootstrap archives for Termux application"
|
||||||
tag: ${{ steps.get_tag.outputs.tag_name }}
|
tag: ${{ steps.get_tag.outputs.tag_name }}
|
||||||
- name: Store artifacts
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: bootstrap-archives-${{ github.sha }}
|
|
||||||
path: "*.zip"
|
|
||||||
|
Loading…
Reference in New Issue
Block a user