diff --git a/.github/workflows/publish-appimage.yml b/.github/workflows/publish-appimage.yml index d2447732a..3d0ec0ccb 100644 --- a/.github/workflows/publish-appimage.yml +++ b/.github/workflows/publish-appimage.yml @@ -105,17 +105,19 @@ 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: + path: 'conky-${{ matrix.os }}-${{ matrix.arch }}-${{ 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: + path: 'conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage.sha256' name: 'conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage.sha256' - path: conky-x86_64.AppImage.sha256 if-no-files-found: error - name: Upload man page artifact uses: actions/upload-artifact@v4