Merge pull request #143 from USACE-RMC/bug-fixes-and-enhancements #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*.*.*" | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| timeout-minutes: 90 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup .NET SDKs | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| 10.0.x | |
| - name: Create version number | |
| shell: pwsh | |
| run: | | |
| $TAG = $env:GITHUB_REF -replace 'refs/tags/', '' | |
| $VERSION = $TAG -replace '^v', '' | |
| echo "VERSION=$VERSION" >> $env:GITHUB_ENV | |
| - name: Build | |
| shell: pwsh | |
| run: dotnet build Numerics/Numerics.csproj -c Release /p:Version=$env:VERSION | |
| - name: Test | |
| env: | |
| VSTEST_CONNECTION_TIMEOUT: '600' | |
| run: dotnet test -c Release | |
| - name: Pack | |
| shell: pwsh | |
| run: dotnet pack Numerics/Numerics.csproj --configuration Release /p:Version=$env:VERSION --no-build -o ./packages | |
| - name: Publish | |
| shell: pwsh | |
| run: dotnet nuget push "**/*.nupkg" --api-key ${{ secrets.NEXUS_NUGET_APIKEY }} --source "https://www.hec.usace.army.mil/nexus/repository/consequences-nuget-public/" --skip-duplicate |