npm publish from PR #12
This file contains 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: npm publish from PR | |
on: | |
workflow_dispatch: | |
inputs: | |
repo: | |
description: 'source gh repo, like `google/zx`' | |
commit: | |
description: 'commit id' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Use Node.js 22 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.inputs.repo }} | |
ref: ${{ github.event.inputs.commit }} | |
- name: Build | |
run: | | |
npm ci | |
npm run build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: build-pr-${{ github.run_id }} | |
path: | | |
target | |
package.json | |
README.md | |
buildstamp.json | |
retention-days: 1 | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
checks: read | |
statuses: write | |
contents: write | |
packages: write | |
id-token: write | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build-pr-${{ github.run_id }} | |
- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Notice | |
if: github.event.inputs.repo != github.repository | |
run: node -e "const fs = require('fs'); fs.writeFileSync('./README.md', process.env.NOTICE + fs.readFileSync('./README.md'))" | |
env: | |
NOTICE: "> ⚠<fe0f> **This snapshot was built from the external source** \n> repo: ${{ github.event.inputs.repo }} \n> commit: ${{ github.event.inputs.commit }}\n" | |
- run: | | |
npm version $(node --eval="process.stdout.write(require('./package.json').version)")-pr.${{ github.run_id }} --no-git-tag-version | |
npm publish --provenance --access=public --no-git-tag-version --tag pr |