feat: SRR Creator overwrite prompt, granular log, no implicit SFV/NFO #8
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.0.x' | |
| dotnet-quality: 'preview' | |
| - name: Extract version from tag | |
| id: version | |
| shell: bash | |
| run: | | |
| TAG="${GITHUB_REF#refs/tags/v}" | |
| echo "version=$TAG" >> "$GITHUB_OUTPUT" | |
| echo "Building version: $TAG" | |
| - name: Publish | |
| run: > | |
| dotnet publish ReScene.NET/ReScene.NET.csproj | |
| -c Release | |
| -r win-x64 | |
| --self-contained | |
| -p:Version=${{ steps.version.outputs.version }} | |
| -p:PublishSingleFile=true | |
| -p:IncludeNativeLibrariesForSelfExtract=true | |
| -o publish | |
| - name: Create zip | |
| shell: pwsh | |
| run: Compress-Archive -Path publish/* -DestinationPath ReScene.NET-${{ steps.version.outputs.version }}-win-x64.zip | |
| - name: Tag ReScene.Lib submodule | |
| if: env.LIB_PAT != '' | |
| shell: bash | |
| env: | |
| LIB_PAT: ${{ secrets.LIB_PAT }} | |
| run: | | |
| cd ReScene.Lib | |
| SUBMODULE_SHA=$(git rev-parse HEAD) | |
| TAG="v${{ steps.version.outputs.version }}" | |
| echo "Tagging ReScene.Lib commit $SUBMODULE_SHA as $TAG" | |
| git config --unset-all http.https://github.com/.extraheader || true | |
| git tag "$TAG" "$SUBMODULE_SHA" | |
| git remote set-url origin "https://x-access-token:${LIB_PAT}@github.com/NeWbY100/ReScene.Lib.git" | |
| git push origin "$TAG" | |
| - name: Create ReScene.Lib GitHub Release | |
| if: env.LIB_PAT != '' | |
| shell: bash | |
| env: | |
| LIB_PAT: ${{ secrets.LIB_PAT }} | |
| GH_TOKEN: ${{ secrets.LIB_PAT }} | |
| run: | | |
| TAG="v${{ steps.version.outputs.version }}" | |
| gh release create "$TAG" \ | |
| --repo NeWbY100/ReScene.Lib \ | |
| --title "$TAG" \ | |
| --generate-notes | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| generate_release_notes: true | |
| files: ReScene.NET-${{ steps.version.outputs.version }}-win-x64.zip |