-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (57 loc) · 1.78 KB
/
npm-publish-from-pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: npm publish from PR
on:
workflow_dispatch:
inputs:
source:
description: 'source reference, example: `google/zx/main/0cba54884f3084af1674118ef6299302d82daaf9`'
required: true
# buildCmd:
# description: 'build cmd'
# default: 'npm ci && npm run build'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Use Node.js 23
uses: actions/setup-node@v4
with:
node-version: 23
- name: Fetch remote source
run: node --experimental-strip-types $(which npx) zx@latest https://raw.githubusercontent.com/webpod/zurk/refs/heads/main/src/scripts/build-from-remote.mts
env:
CTX: ${{ toJSON(github.event.inputs) }}
- name: Build
run: |
npm ci
npm run build
- uses: actions/upload-artifact@v4
with:
name: build-pr-${{ github.event.inputs.source }}
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.event.inputs.source }}
- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: |
npm version $(node --eval="process.stdout.write(require('./package.json').version)")-pr.$(git rev-parse --short HEAD) --no-git-tag-version
npm publish --provenance --access=public --no-git-tag-version --tag pr