Skip to content

Commit 65bce6f

Browse files
authored
chore: setup token lists deploy (#683)
1 parent 9332f91 commit 65bce6f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/release.yml

+13
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,23 @@ jobs:
2222
# Refer to it by calling env.NPM_TOKEN
2323
# This token is also limited by IP to ONLY work on the runner
2424
NPM_TOKEN: op://npm-deploy/npm-runner-token/secret
25+
26+
- name: Checkout
27+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
28+
29+
- name: Setup Node
30+
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7
31+
with:
32+
cache: yarn
33+
node-version: 18
34+
35+
- name: Install dependencies
36+
run: yarn install --immutable --immutable-cache
2537

2638
- name: Release
2739
env:
2840
NPM_CONFIG_USERCONFIG: /dev/null
2941
NPM_TOKEN: ${{ env.NPM_TOKEN }}
3042
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Optional
3143
run: yarn g:release
44+

0 commit comments

Comments
 (0)