File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -24,18 +24,18 @@ jobs:
24
24
id : set-tag
25
25
run : echo "TAG_NAME=${{ github.event.release.tag_name || github.event.inputs.tag }}" >> $GITHUB_ENV
26
26
27
- - name : Checkout Repo
28
- uses : actions/checkout@v3
27
+ - name : Checkout repository
28
+ uses : actions/checkout@v4
29
29
with :
30
- token : ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }}
31
30
# Use the tag associated with the release
32
31
ref : ${{ env.TAG_NAME }}
32
+ token : ${{ secrets.GITHUB_TOKEN }}
33
33
34
34
- name : Setup Node from .nvmrc
35
35
uses : actions/setup-node@v4
36
36
with :
37
37
node-version-file : " .nvmrc"
38
- registry-url : ' https://registry.npmjs.org'
38
+ registry-url : " https://registry.npmjs.org"
39
39
40
40
- name : Install dependencies
41
41
run : yarn install --frozen-lockfile
60
60
run : npm publish --provenance --tag ${{ env.NPM_TAG }}
61
61
env :
62
62
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
63
- GITHUB_TOKEN : ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }}
63
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments