From 169f6a2032db664d48df7317ff3b1257c1b64764 Mon Sep 17 00:00:00 2001 From: raojinlin <1239015423@qq.com> Date: Tue, 27 Feb 2024 20:59:53 +0800 Subject: [PATCH] push release --- .github/workflows/release-linux.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-linux.yaml b/.github/workflows/release-linux.yaml index 6e6262a..f14679c 100644 --- a/.github/workflows/release-linux.yaml +++ b/.github/workflows/release-linux.yaml @@ -124,17 +124,20 @@ jobs: --output=appimage \ -e $build_dir/usr/local/bin/tiny-rdm \ -d $build_dir/usr/share/applications/tiny-rdm.desktop - -i $build_dir/usr/share/icons/hicolor/512x512/apps/tiny-rdm.png - ls -l - - name: Rename deb working-directory: ./build/linux run: mv "tiny-rdm_${{ steps.normalise_version.outputs.version }}_amd64.deb" "tiny-rdm_${{ steps.normalise_version.outputs.version }}_${{ steps.normalise_platform.outputs.tag }}.deb" + - name: Rename appimage + working-directory: ./build/linux + run: mv Tiny_RDM-x86_64.AppImage "tiny-rdm_${{ steps.normalise_version.outputs.version }}_${{ steps.normalise_platform.outputs.tag }}.AppImage" + - name: Upload release asset uses: softprops/action-gh-release@v1 with: tag_name: v${{ steps.normalise_version.outputs.version }} - files: ./build/linux/tiny-rdm_${{ steps.normalise_version.outputs.version }}_${{ steps.normalise_platform.outputs.tag }}.deb + files: | + ./build/linux/tiny-rdm_${{ steps.normalise_version.outputs.version }}_${{ steps.normalise_platform.outputs.tag }}.deb + tiny-rdm_${{ steps.normalise_version.outputs.version }}_${{ steps.normalise_platform.outputs.tag }}.AppImage token: ${{ secrets.GITHUB_TOKEN }}