From cea5fcced4c29765ffdf7c12c98f40160e6f3616 Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Wed, 17 Apr 2024 07:16:20 -0400 Subject: [PATCH 1/2] 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 d2447732a..105816235 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 From 798cd65b6426f4cc50437dd604898b53660704a2 Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Wed, 17 Apr 2024 07:19:33 -0400 Subject: [PATCH 2/2] Name not optional --- .github/workflows/publish-appimage.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish-appimage.yml b/.github/workflows/publish-appimage.yml index 105816235..3d0ec0ccb 100644 --- a/.github/workflows/publish-appimage.yml +++ b/.github/workflows/publish-appimage.yml @@ -111,11 +111,13 @@ jobs: uses: actions/upload-artifact@v4 with: path: 'conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage' + name: '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: path: 'conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage.sha256' + name: '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