Publish PR #18159
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: Publish PR | |
| on: | |
| workflow_run: | |
| workflows: ['Main CI'] | |
| types: | |
| - completed | |
| permissions: | |
| contents: read | |
| jobs: | |
| version: | |
| if: ${{ github.event.workflow_run.event == 'pull_request' }} | |
| permissions: | |
| actions: read | |
| runs-on: ubuntu-latest | |
| outputs: | |
| nextVersionTag: ${{ steps.newVersion.outputs.nextVersionTag }} | |
| steps: | |
| - name: get logs from workflow run | |
| uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 | |
| with: | |
| script: | | |
| let download = await github.rest.actions.downloadWorkflowRunAttemptLogs({ | |
| ...context.repo, | |
| run_id: context.payload.workflow_run.id, | |
| attempt_number: 1 | |
| }); | |
| let fs = require('fs'); | |
| fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/logs.zip`, Buffer.from(download.data)); | |
| - run: unzip logs.zip | |
| - name: extract version from logs | |
| id: newVersion | |
| run: echo nextVersionTag=$(find -name '*_version.txt' | xargs grep -hiPo '(?<=nextVersionTag variable has been set with ).*$') >> "$GITHUB_OUTPUT" | |
| publish-packages-pr: | |
| uses: ./.github/workflows/publish.yml | |
| needs: [version] | |
| permissions: | |
| contents: read | |
| # Needed to publish on npmjs registry (not needed for pull-request but requested by publish.yml workflow) | |
| id-token: write | |
| secrets: inherit | |
| with: | |
| version: ${{ needs.version.outputs.nextVersionTag }}-${{ github.event.workflow_run.run_attempt }} | |
| prerelease: true | |
| isPullRequest: true | |
| gitRef: ${{ github.event.workflow_run.pull_requests[0].base.ref }} | |
| skipNxCache: ${{ vars.NX_SKIP_NX_CACHE == 'true' }} | |
| skipNxRemoteCache: ${{ vars.NX_SKIP_REMOTE_CACHE == 'true' }} | |
| notify-parent: | |
| runs-on: ubuntu-latest | |
| needs: [publish-packages-pr] | |
| if: success() || failure() | |
| permissions: | |
| # Needed to notify the parent workflow | |
| checks: write | |
| steps: | |
| - name: Update triggering workflow | |
| uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 | |
| env: | |
| PUBLISH_RESULT: ${{ needs.publish-packages-pr.result }} | |
| with: | |
| script: | | |
| const backUrl = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}/attempts/${context.runAttempt || 1}`; | |
| await github.rest.checks.create({ | |
| ...context.repo, | |
| head_sha: context.payload.workflow_run.head_commit.id, | |
| name: 'publish-packages-pr', | |
| conclusion: process.env.PUBLISH_RESULT, | |
| status: 'completed', | |
| output: { | |
| title: 'publish-packages-pr', | |
| summary: `${process.env.PUBLISH_RESULT} publish [${backUrl}](${backUrl})` | |
| } | |
| }); |