Bump actions/stale from 9 to 10 #240
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: .NET build and test | |
| env: | |
| CURRENT_VERSION: 2.0.${{ github.run_number }} | |
| LAST_COMMIT_MESSAGE: ${{ github.event.head_commit.message }} | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [windows-latest, ubuntu-latest] | |
| node: ['20', '22'] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build --configuration Release --no-restore | |
| - name: Test | |
| run: dotnet test --no-build --verbosity normal --configuration Release | |
| deployRelease: | |
| if: github.ref == 'refs/heads/release' | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build --configuration Release --no-restore | |
| - name: NugetPush | |
| env: | |
| NUGET_TOKEN_EXISTS: ${{ secrets.NUGET_TOKEN }} | |
| if: env.NUGET_TOKEN_EXISTS != '' | |
| run: | | |
| dotnet nuget push ./PdfJsSharp/bin/Release/*.nupkg --skip-duplicate --api-key ${{secrets.NUGET_TOKEN}} --source https://api.nuget.org/v3/index.json | |
| - name: Github | |
| shell: bash | |
| env: | |
| GITHUB_TOKEN: ${{ github.TOKEN }} | |
| if: env.GITHUB_TOKEN != '' | |
| run: | | |
| gh release create ${{env.CURRENT_VERSION}} ./PdfJsSharp/bin/Release/*.*nupkg --generate-notes | |
| deployTest: | |
| if: github.ref == 'refs/heads/main' | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build --configuration Release --no-restore | |
| - name: NugetPush | |
| env: | |
| NUGET_TOKEN_EXISTS: ${{ secrets.NUGET_TEST_TOKEN }} | |
| if: env.NUGET_TOKEN_EXISTS != '' | |
| run: | | |
| ls ./PdfJsSharp/bin/Release | |
| dotnet nuget push ./PdfJsSharp/bin/Release/*.nupkg --skip-duplicate --api-key ${{secrets.NUGET_TEST_TOKEN}} --source https://apiint.nugettest.org/v3/index.json | |
| - name: Github prerelease | |
| shell: bash | |
| env: | |
| GITHUB_TOKEN: ${{ github.TOKEN }} | |
| if: env.GITHUB_TOKEN != '' | |
| run: | | |
| gh release create ${{env.CURRENT_VERSION}} ./PdfJsSharp/bin/Release/*.*nupkg --prerelease --generate-notes |