Skip to content

Commit

Permalink
upload desktop and server artifacts separately
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua-Riek committed Sep 13, 2023
1 parent 5ef7c4e commit 6f97630
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,17 @@ jobs:
sudo rm -rf ./images/
sudo ./build.sh -b ${{ matrix.platform }} $args
- name: Upload artifacts
- name: Upload server artifact
uses: actions/upload-artifact@v3
with:
name: ubuntu-22.04.3-preinstalled-arm64-${{ matrix.platform }}
path: ./images/ubuntu-22.04.3-preinstalled-*-arm64-${{ matrix.platform }}.*
name: ubuntu-22.04.3-preinstalled-server-arm64-${{ matrix.platform }}
path: ./images/ubuntu-22.04.3-preinstalled-server-arm64-${{ matrix.platform }}.*
if-no-files-found: error

- name: Upload desktop artifact
uses: actions/upload-artifact@v3
with:
name: ubuntu-22.04.3-preinstalled-desktop-arm64-${{ matrix.platform }}
path: ./images/ubuntu-22.04.3-preinstalled-desktop-arm64-${{ matrix.platform }}.*
if-no-files-found: error

0 comments on commit 6f97630

Please sign in to comment.