From 9934ff16d086b01d9f0c7d963b19156dc181d145 Mon Sep 17 00:00:00 2001 From: madwind Date: Sat, 8 Feb 2025 18:07:28 +0800 Subject: [PATCH] fix action --- .github/workflows/sdl3_release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sdl3_release.yml b/.github/workflows/sdl3_release.yml index 6c4fd0129..222f3cdff 100644 --- a/.github/workflows/sdl3_release.yml +++ b/.github/workflows/sdl3_release.yml @@ -162,7 +162,7 @@ jobs: uses: ncipollo/release-action@v1 with: name: ${{ steps.version_info.outputs.build_version }} - artifacts: "release_output/*.tar.gz,release_output/*.zip,release_output/*AppImage*" + artifacts: "release_output/*.tar.gz,release_output/*.7z,release_output/*AppImage*" tag: ${{ steps.version_info.outputs.build_version }} body: | # Stable builds: @@ -211,8 +211,8 @@ jobs: - name: Get version info id: version_info run: | - echo "build_version=${{ env.RYUJINX_BASE_VERSION }}.${{ github.run_number }}" >> $GITHUB_OUTPUT - echo "prev_build_version=${{ env.RYUJINX_BASE_VERSION }}.$((${{ github.run_number }} - 1))" >> $GITHUB_OUTPUT + echo "build_version=${{ env.RYUJINX_BASE_VERSION }}.${{ github.run_number }}-SDL3" >> $GITHUB_OUTPUT + echo "prev_build_version=${{ env.RYUJINX_BASE_VERSION }}.$((${{ github.run_number }} - 1))-SDL3" >> $GITHUB_OUTPUT echo "git_short_hash=$(git rev-parse --short "${{ github.sha }}")" >> $GITHUB_OUTPUT - name: Configure for release