|
| 1 | +name: Publish NPM packages |
| 2 | + |
| 3 | +on: |
| 4 | + pull_request: |
| 5 | + branches: ["main"] |
| 6 | + paths-ignore: |
| 7 | + - "**" |
| 8 | + - "!**/package.json" |
| 9 | + - "!**/package-lock.json" |
| 10 | + types: |
| 11 | + - opened |
| 12 | + - reopened |
| 13 | + - synchronize |
| 14 | + push: |
| 15 | + branches: ["main"] |
| 16 | + paths-ignore: |
| 17 | + - "**" |
| 18 | + - "!**/package.json" |
| 19 | + - "!**/package-lock.json" |
| 20 | + |
| 21 | +defaults: |
| 22 | + run: |
| 23 | + shell: bash |
| 24 | + |
| 25 | +jobs: |
| 26 | + publish: |
| 27 | + if: >- |
| 28 | + ${{ |
| 29 | + ( |
| 30 | + github.event_name == 'pull_request' && |
| 31 | + startsWith(github.event.pull_request.title, 'Publish v') && |
| 32 | + endsWith(github.event.pull_request.title, 'of the @tektoncd/dashboard-* packages') |
| 33 | + ) || |
| 34 | + ( |
| 35 | + github.event_name == 'push' && |
| 36 | + startsWith(github.event.head_commit.message, 'Publish v') && |
| 37 | + endsWith(github.event.head_commit.message, 'of the @tektoncd/dashboard-* packages') |
| 38 | + ) |
| 39 | + }} |
| 40 | + runs-on: ubuntu-24.04 |
| 41 | + permissions: |
| 42 | + contents: read |
| 43 | + # required for npm package provenance |
| 44 | + id-token: write |
| 45 | + steps: |
| 46 | + - name: Harden Runner |
| 47 | + uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 |
| 48 | + with: |
| 49 | + egress-policy: audit |
| 50 | + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 |
| 51 | + with: |
| 52 | + # for PRs checkout the head rather than the merge commit so we can get the original commit message |
| 53 | + ref: ${{ github.event.pull_request.head.sha || github.sha }} |
| 54 | + - name: Validate PR title and commit message match |
| 55 | + if: ${{ github.event_name == 'pull_request' }} |
| 56 | + run: | |
| 57 | + PR_TITLE="${{ github.event.pull_request.title }}" |
| 58 | + COMMIT_MESSAGE="$(git log --pretty=%s -n 1)" |
| 59 | + if [ "$PR_TITLE" != "$COMMIT_MESSAGE" ]; then |
| 60 | + echo "::error::PR title and commit message mismatch" |
| 61 | + echo "Expected format: Publish <version> of the @tektoncd/dashboard-* packages" |
| 62 | + echo "PR_TITLE: $PR_TITLE" |
| 63 | + echo "COMMIT_MESSAGE: $COMMIT_MESSAGE" |
| 64 | + exit 1 |
| 65 | + else |
| 66 | + echo "PR title and commit message match, continuing…" |
| 67 | + fi |
| 68 | + - name: Get version |
| 69 | + id: get-version |
| 70 | + run: | |
| 71 | + echo "Extracting version from commit message" |
| 72 | + VERSION=$(echo ${{ github.event.pull_request.title || github.event.head_commit.message }} | grep -Po '(v\d+\.\d+\.\d+(\S)*)') |
| 73 | + echo "VERSION: $VERSION" |
| 74 | + echo "newPackageVersion=${VERSION}" >> $GITHUB_OUTPUT |
| 75 | + - name: Check version matches package.json |
| 76 | + run: | |
| 77 | + EXPECTED_VERSION="${{ steps.get-version.outputs.newPackageVersion }}" |
| 78 | + mismatch=false |
| 79 | + for packageJson in ./packages/*/package.json; do |
| 80 | + VERSION="v$(jq -r .version $packageJson)" |
| 81 | + PRIVATE="$(jq -r .private)" |
| 82 | + if [ "$PRIVATE" == "false" ] && [ "$VERSION" != "$EXPECTED_VERSION" ]; then |
| 83 | + echo "::error::Version mismatch found in $packageJson: ${VERSION}" |
| 84 | + mismatch=true |
| 85 | + fi |
| 86 | + done |
| 87 | + if [ "$mismatch" == "true" ]; then |
| 88 | + exit 1 |
| 89 | + fi |
| 90 | + - name: Check PR is up-to-date |
| 91 | + if: ${{ github.event_name == 'pull_request' }} |
| 92 | + env: |
| 93 | + GH_TOKEN: ${{ github.token }} |
| 94 | + run: | |
| 95 | + BASE_REF="${{github.event.pull_request.base.repo.owner.login}}:${{github.event.pull_request.base.ref}}" |
| 96 | + HEAD_REF="${{github.event.pull_request.head.repo.owner.login}}:${{github.event.pull_request.head.ref}}" |
| 97 | + STATUS=$(gh api \ |
| 98 | + -H "Accept: application/vnd.github+json" \ |
| 99 | + -H "X-GitHub-Api-Version: 2022-11-28" \ |
| 100 | + /repos/${{ github.repository }}/compare/${BASE_REF}...${HEAD_REF} | jq -r .status) |
| 101 | + if [ "$STATUS" != "ahead" ]; then |
| 102 | + echo "::error::Pull request not up-to-date with base branch, please rebase" |
| 103 | + exit 1 |
| 104 | + else |
| 105 | + echo "Pull request is up-to-date with base branch, continuing…" |
| 106 | + fi |
| 107 | + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 |
| 108 | + with: |
| 109 | + node-version-file: .nvmrc |
| 110 | + - name: Publish dry run |
| 111 | + if: ${{ github.event_name == 'pull_request' }} |
| 112 | + run: npm publish --workspaces --provenance --access public --dry-run |
| 113 | + - name: Publish |
| 114 | + if: ${{ github.event_name == 'push' }} |
| 115 | + run: npm publish --workspaces --provenance --access public |
| 116 | + # env: |
| 117 | + # NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |
0 commit comments