We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9332f91 commit 65bce6fCopy full SHA for 65bce6f
.github/workflows/release.yml
@@ -22,10 +22,23 @@ jobs:
22
# Refer to it by calling env.NPM_TOKEN
23
# This token is also limited by IP to ONLY work on the runner
24
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
37
38
- name: Release
39
env:
40
NPM_CONFIG_USERCONFIG: /dev/null
41
NPM_TOKEN: ${{ env.NPM_TOKEN }}
42
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Optional
43
run: yarn g:release
44
0 commit comments