Bump version #26
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
| # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
| name: Publish | |
| on: | |
| push: | |
| tags: | |
| - v** # Only when a v... tag is pushed | |
| # Sets permissions of the GITHUB_TOKEN to allow writing packages and push releases | |
| permissions: | |
| packages: write | |
| contents: write | |
| env: | |
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
| DOTNET_NOLOGO: true | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NuGetDirectory: ${{ github.workspace}}/nuget | |
| defaults: | |
| run: | |
| shell: pwsh | |
| # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
| # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
| concurrency: | |
| group: "publish" | |
| cancel-in-progress: false | |
| jobs: | |
| Build: | |
| uses: ./.github/workflows/build.yml | |
| Release: | |
| if: ${{ !contains(github.ref, '-') }} # simple check for vX.Y.Z-something | |
| runs-on: ubuntu-latest | |
| needs: [ build ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Download NuGet Packages Artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: NuGet Packages | |
| path: ${{ env.NuGetDirectory }} | |
| - name: Build Changelog | |
| id: build_changelog | |
| uses: mikepenz/release-changelog-builder-action@v4 | |
| - name: Create Release | |
| uses: mikepenz/action-gh-release@v1 #softprops/action-gh-release | |
| with: | |
| body: ${{steps.build_changelog.outputs.changelog}} | |
| files: ${{ env.NuGetDirectory }}/*.nupkg | |
| fail_on_unmatched_files: true | |
| fail_on_asset_upload_issue: true | |
| Publish-GitHub: | |
| #if: startsWith(github.ref, 'refs/tags/') | |
| runs-on: ubuntu-latest | |
| needs: [ build ] | |
| steps: | |
| - name: Download NuGet Packages Artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: NuGet Packages | |
| path: ${{ env.NuGetDirectory }} | |
| - name: Setup Dotnet | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 10.x | |
| source-url: https://nuget.pkg.github.com/ResoniteModdingGroup/index.json | |
| # Publish all NuGet packages to the GitHub feed | |
| # Use --skip-duplicate to prevent errors if a package with the same version already exists. | |
| # If you retry a failed workflow, already published packages will be skipped without error. | |
| - name: Publish NuGet Packages | |
| run: | | |
| foreach($file in (Get-ChildItem "${{ env.NuGetDirectory }}" -Recurse -Include *.nupkg)) { | |
| dotnet nuget push $file --api-key "${{ secrets.GITHUB_TOKEN }}" --source https://nuget.pkg.github.com/ResoniteModdingGroup/index.json --skip-duplicate | |
| } |