Release #2
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*' | |
| workflow_dispatch: | |
| inputs: | |
| release_tag: | |
| description: Existing version tag to validate and release | |
| required: true | |
| type: string | |
| permissions: | |
| contents: write | |
| env: | |
| DOTNET_VERSION: '10.0.x' | |
| RELEASE_TAG: ${{ inputs.release_tag || github.ref_name }} | |
| jobs: | |
| release: | |
| name: Validate, publish, and release | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 25 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{ env.RELEASE_TAG }} | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: ${{ env.DOTNET_VERSION }} | |
| - name: Verify tag matches package version | |
| id: version | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| VERSION="$(dotnet msbuild src/ManagedCode.FileContext/ManagedCode.FileContext.csproj -nologo -getProperty:PackageVersion | tr -d '\r')" | |
| TAG_VERSION="${RELEASE_TAG#v}" | |
| if [ -z "${VERSION}" ] || [ "${TAG_VERSION}" != "${VERSION}" ]; then | |
| echo "::error::Tag ${RELEASE_TAG} does not match package version ${VERSION}." | |
| exit 1 | |
| fi | |
| echo "version=${VERSION}" >> "${GITHUB_OUTPUT}" | |
| - name: Restore | |
| run: dotnet restore ManagedCode.FileContext.slnx | |
| - name: Verify formatting | |
| run: dotnet format ManagedCode.FileContext.slnx --verify-no-changes --no-restore | |
| - name: Build | |
| run: dotnet build ManagedCode.FileContext.slnx --configuration Release --no-restore | |
| - name: Test | |
| run: dotnet test tests/ManagedCode.FileContext.Tests/ManagedCode.FileContext.Tests.csproj --configuration Release --no-build | |
| - name: Pack | |
| run: dotnet pack src/ManagedCode.FileContext/ManagedCode.FileContext.csproj --configuration Release --no-build --output artifacts -p:IncludeSymbols=false | |
| - name: Publish to NuGet | |
| shell: bash | |
| env: | |
| NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | |
| run: | | |
| set -euo pipefail | |
| if [ -z "${NUGET_API_KEY}" ]; then | |
| echo "::error::NUGET_API_KEY is not configured." | |
| exit 1 | |
| fi | |
| dotnet nuget push "artifacts/ManagedCode.FileContext.${{ steps.version.outputs.version }}.nupkg" \ | |
| --api-key "${NUGET_API_KEY}" \ | |
| --source https://api.nuget.org/v3/index.json \ | |
| --skip-duplicate | |
| - name: Create GitHub release | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| gh release create "${RELEASE_TAG}" artifacts/*.nupkg \ | |
| --title "${RELEASE_TAG}" \ | |
| --generate-notes \ | |
| --verify-tag |