Release: Patch (3) Release #11
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: Patch (3) Release' | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| type: | |
| description: 'The type of release to perform.' | |
| required: true | |
| type: 'choice' | |
| options: | |
| - 'stable' | |
| - 'preview' | |
| dry_run: | |
| description: 'Run a dry-run of the release process; no branches, npm packages or GitHub releases will be created.' | |
| required: true | |
| type: 'boolean' | |
| default: true | |
| force_skip_tests: | |
| description: 'Select to skip the "Run Tests" step in testing. Prod releases should run tests' | |
| required: false | |
| type: 'boolean' | |
| default: false | |
| release_ref: | |
| description: 'The branch, tag, or SHA to release from.' | |
| required: true | |
| type: 'string' | |
| jobs: | |
| release: | |
| runs-on: 'ubuntu-latest' | |
| permissions: | |
| contents: 'write' | |
| packages: 'write' | |
| issues: 'write' | |
| steps: | |
| - name: 'Checkout' | |
| uses: 'actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8' | |
| with: | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| - name: 'Checkout Release Code' | |
| uses: 'actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8' | |
| with: | |
| ref: '${{ github.event.inputs.release_ref }}' | |
| path: 'release' | |
| fetch-depth: 0 | |
| - name: 'Setup Node.js' | |
| uses: 'actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020' # ratchet:actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'npm' | |
| - name: 'Install Dependencies' | |
| working-directory: './release' | |
| run: |- | |
| npm ci | |
| - name: 'Print Inputs' | |
| shell: 'bash' | |
| run: |- | |
| echo "${{ toJSON(inputs) }}" | |
| - name: 'Get Patch Version' | |
| id: 'patch_version' | |
| env: | |
| GH_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
| run: | | |
| # Use the existing get-release-version.js script to calculate patch version | |
| # Run from main checkout which has full git history and access to npm | |
| PATCH_JSON=$(node scripts/get-release-version.js --type=patch --patch-from=${{ github.event.inputs.type }}) | |
| echo "Patch version calculation result: ${PATCH_JSON}" | |
| RELEASE_VERSION=$(echo "${PATCH_JSON}" | jq -r .releaseVersion) | |
| RELEASE_TAG=$(echo "${PATCH_JSON}" | jq -r .releaseTag) | |
| NPM_TAG=$(echo "${PATCH_JSON}" | jq -r .npmTag) | |
| PREVIOUS_TAG=$(echo "${PATCH_JSON}" | jq -r .previousReleaseTag) | |
| echo "RELEASE_VERSION=${RELEASE_VERSION}" >> "${GITHUB_OUTPUT}" | |
| echo "RELEASE_TAG=${RELEASE_TAG}" >> "${GITHUB_OUTPUT}" | |
| echo "NPM_TAG=${NPM_TAG}" >> "${GITHUB_OUTPUT}" | |
| echo "PREVIOUS_TAG=${PREVIOUS_TAG}" >> "${GITHUB_OUTPUT}" | |
| - name: 'Print Calculated Version' | |
| run: |- | |
| echo "Patch Release Summary:" | |
| echo " Release Version: ${{ steps.patch_version.outputs.RELEASE_VERSION }}" | |
| echo " Release Tag: ${{ steps.patch_version.outputs.RELEASE_TAG }}" | |
| echo " NPM Tag: ${{ steps.patch_version.outputs.NPM_TAG }}" | |
| echo " Previous Tag: ${{ steps.patch_version.outputs.PREVIOUS_TAG }}" | |
| - name: 'Run Tests' | |
| uses: './.github/actions/run-tests' | |
| with: | |
| force_skip_tests: '${{ github.event.inputs.force_skip_tests }}' | |
| gemini_api_key: '${{ secrets.GEMINI_API_KEY }}' | |
| working-directory: './release' | |
| - name: 'Publish Release' | |
| uses: './.github/actions/publish-release' | |
| with: | |
| release-version: '${{ steps.patch_version.outputs.RELEASE_VERSION }}' | |
| release-tag: '${{ steps.patch_version.outputs.RELEASE_TAG }}' | |
| npm-tag: '${{ steps.patch_version.outputs.NPM_TAG }}' | |
| wombat-token-core: '${{ secrets.WOMBAT_TOKEN_CORE }}' | |
| wombat-token-cli: '${{ secrets.WOMBAT_TOKEN_CLI }}' | |
| github-token: '${{ secrets.GITHUB_TOKEN }}' | |
| dry-run: '${{ github.event.inputs.dry_run }}' | |
| previous-tag: '${{ steps.patch_version.outputs.PREVIOUS_TAG }}' | |
| working-directory: './release' | |
| - name: 'Create Issue on Failure' | |
| if: '${{ failure() && github.event.inputs.dry_run == false }}' | |
| env: | |
| GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
| RELEASE_TAG: '${{ steps.patch_version.outputs.RELEASE_TAG }}' | |
| DETAILS_URL: '${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}' | |
| run: | | |
| gh issue create \ | |
| --title 'Patch Release Failed for ${RELEASE_TAG} on $(date +'%Y-%m-%d')' \ | |
| --body 'The patch-release workflow failed. See the full run for details: ${DETAILS_URL}' \ | |
| --label 'kind/bug,release-failure,priority/p0' |