1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-28 21:19:10 +00:00

Include arch in appimage name

This commit is contained in:
Brenden Matthews 2024-02-29 09:21:47 -05:00
parent f6c8b60f83
commit 6a0d42af73

View File

@ -27,6 +27,8 @@ jobs:
os: os:
- ubuntu-20.04 - ubuntu-20.04
- ubuntu-22.04 - ubuntu-22.04
arch:
- x86_64
permissions: permissions:
contents: write contents: write
discussions: write discussions: write
@ -98,13 +100,13 @@ jobs:
- name: Upload AppImage artifact - name: Upload AppImage artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: "conky-${{ matrix.os }}-${{ env.GIT_VERSION }}.AppImage" name: "conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage"
path: conky-x86_64.AppImage path: conky-x86_64.AppImage
if-no-files-found: error if-no-files-found: error
- name: Upload AppImage checksum artifact - name: Upload AppImage checksum artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: 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 path: conky-x86_64.AppImage.sha256
if-no-files-found: error if-no-files-found: error
- name: Upload man page artifact - name: Upload man page artifact