From 3980c591bd7b8d991989601ab70b0eb61c66f9af Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Wed, 17 Apr 2024 07:16:20 -0400 Subject: [PATCH] Rename release artifacts --- .github/workflows/publish-appimage.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-appimage.yml b/.github/workflows/publish-appimage.yml index 3e02b85c..6e169b00 100644 --- a/.github/workflows/publish-appimage.yml +++ b/.github/workflows/publish-appimage.yml @@ -105,17 +105,17 @@ jobs: echo "CXX=clang++-${CLANG_VERSION}" | tee -a $GITHUB_ENV - name: Build AppImage run: ./appimage/build.sh + - run: mv conky-x86_64.AppImage conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage + - run: mv conky-x86_64.AppImage.sha256 conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage.sha256 - name: Upload AppImage artifact uses: actions/upload-artifact@v4 with: - name: 'conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage' - path: conky-x86_64.AppImage + path: 'conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage' if-no-files-found: error - name: Upload AppImage checksum artifact uses: actions/upload-artifact@v4 with: - name: 'conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage.sha256' - path: conky-x86_64.AppImage.sha256 + path: 'conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage.sha256' if-no-files-found: error - name: Upload man page artifact uses: actions/upload-artifact@v4