avoid parallel uploads
All checks were successful
Build images / Build images (push) Successful in 1h38m7s
All checks were successful
Build images / Build images (push) Successful in 1h38m7s
This commit is contained in:
parent
fdc2eec104
commit
3ec0a6670c
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
@ -46,11 +46,19 @@ jobs:
|
|||||||
sudo mv deploy/*-arm64-standalone.img deploy/showpieceos-arm64-standalone.img &&
|
sudo mv deploy/*-arm64-standalone.img deploy/showpieceos-arm64-standalone.img &&
|
||||||
sudo mv deploy/*-arm64-client.img deploy/showpieceos-arm64-client.img
|
sudo mv deploy/*-arm64-client.img deploy/showpieceos-arm64-client.img
|
||||||
|
|
||||||
- name: Publish artifacts
|
- name: Publish client
|
||||||
if: startsWith(github.ref, 'refs/tags/v')
|
if: startsWith(github.ref, 'refs/tags/v')
|
||||||
uses: https://github.com/softprops/action-gh-release@v2
|
uses: https://github.com/softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ github.ref_name }}
|
tag_name: ${{ github.ref_name }}
|
||||||
name: ${{ github.ref_name }}
|
name: ${{ github.ref_name }}
|
||||||
files: deploy/*.img
|
files: deploy/*-client.img
|
||||||
|
|
||||||
|
- name: Publish standalone
|
||||||
|
if: startsWith(github.ref, 'refs/tags/v')
|
||||||
|
uses: https://github.com/softprops/action-gh-release@v2
|
||||||
|
with:
|
||||||
|
tag_name: ${{ github.ref_name }}
|
||||||
|
name: ${{ github.ref_name }}
|
||||||
|
files: deploy/*-standalone.img
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user