-
Notifications
You must be signed in to change notification settings - Fork 35
41 lines (33 loc) · 959 Bytes
/
snapshot.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
name: Snapshot
on: workflow_dispatch
permissions: {}
env:
COREPACK_DEFAULT_TO_LATEST: 0
jobs:
publish:
name: Publish Snapshot
permissions:
id-token: write
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Check out repo
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }}
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Set up pnpm
run: npm install --global corepack@0.31.0 && corepack enable pnpm && corepack install
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Publish to npm
uses: seek-oss/changesets-snapshot@v0
with:
pre-publish: pnpm run build
env:
GITHUB_TOKEN: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}