Skip to content

Commit

Permalink
Include arch in appimage name
Browse files Browse the repository at this point in the history
  • Loading branch information
brndnmtthws committed Feb 29, 2024
1 parent fc6a5f5 commit f3adec0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish-appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
os:
- ubuntu-20.04
- ubuntu-22.04
arch:
- x86_64
permissions:
contents: write
discussions: write
Expand Down Expand Up @@ -98,13 +100,13 @@ jobs:
- name: Upload AppImage artifact
uses: actions/upload-artifact@v4
with:
name: "conky-${{ matrix.os }}-${{ env.GIT_VERSION }}.AppImage"
name: "conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage"
path: conky-x86_64.AppImage
if-no-files-found: error
- name: Upload AppImage checksum artifact
uses: actions/upload-artifact@v4
with:
name: "conky-${{ matrix.os }}-${{ env.GIT_VERSION }}.AppImage"
name: "conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage"
path: conky-x86_64.AppImage.sha256
if-no-files-found: error
- name: Upload man page artifact
Expand Down

0 comments on commit f3adec0

Please sign in to comment.