Skip to content

Commit

Permalink
renaming the linux artifacts to x64/arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
jokkon committed Jun 20, 2024
1 parent 5f408f0 commit 27b116d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,13 @@ jobs:
- name: Rename and archive app
run: |
export REF=$(echo ${GITHUB_REF} | cut -d '/' -f 3)
export BASENAME="yubioath-desktop-${REF}-linux"
export BASENAME="yubioath-desktop-${REF}-linux-arm64"
mkdir deploy
mv build/linux/arm64/release/bundle "build/${BASENAME}"
tar -czf deploy/${BASENAME}.tar.gz -C build "${BASENAME}"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: yubioath-desktop-linux
name: yubioath-desktop-linux-arm64
path: deploy
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ jobs:
- name: Rename and archive app
run: |
export REF=$(echo ${GITHUB_REF} | cut -d '/' -f 3)
export BASENAME="yubioath-desktop-${REF}-linux"
export BASENAME="yubioath-desktop-${REF}-linux-x64"
mkdir deploy
mv build/linux/x64/release/bundle "build/${BASENAME}"
tar -czf deploy/${BASENAME}.tar.gz -C build "${BASENAME}"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: yubioath-desktop-linux
name: yubioath-desktop-linux-x64
path: deploy

0 comments on commit 27b116d

Please sign in to comment.