avoid parallel uploads
All checks were successful
Build images / Build images (push) Successful in 1h38m7s

This commit is contained in:
Cory Sanin 2025-04-29 00:29:36 -05:00
parent fdc2eec104
commit 3ec0a6670c

View File

@ -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