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