Skip to content

Commit

Permalink
upload desktop and server artifacts separately for mainline workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua-Riek committed Sep 14, 2023
1 parent 5a1ec7a commit a3dc341
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build-mainline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,16 @@ jobs:
sudo rm -rf ./images/
sudo ./build.sh --board ${{ matrix.platform }} --mainline --server-only
- 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 a3dc341

Please sign in to comment.