File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed
Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,32 @@ jobs:
2727 (startsWith(github.event.pull_request.head.ref, 'release/')
2828 && github.event.pull_request.merged == true)
2929 runs-on : ubuntu-latest
30+ env :
31+ NPM_TOKEN_FLDV : ${{ secrets.NPM_TOKEN_FLDV }}
32+ PAT_GPR_FLDV : ${{ secrets.PAT_GPR_FLDV }}
3033 outputs :
3134 publish_args : ${{ steps.publish_args.outputs.args }}
3235 tag : ${{ steps.release.outputs.tag }}
3336 steps :
37+ - id : checkout
38+ name : Checkout branch
39+ uses : actions/checkout@v2
40+ with :
41+ ref : ${{ github.head_ref }}
42+ - id : setup-node
43+ name : Setup Node environment
44+ uses : actions/setup-node@v2
45+ with :
46+ always-auth : true
47+ cache : yarn
48+ node-version : 16
49+ registry-url : https://npm.pkg.github.com
50+ scope : ' @${{ github.repository_owner }}'
51+ - id : cache
52+ name : Cache dependencies
53+ run : yarn --immutable
54+ env :
55+ NODE_AUTH_TOKEN : ${PAT_GPR_FLDV}
3456 - id : release
3557 name : Get release details
3658 uses : actions/github-script@v4
7799 node-version : 16
78100 registry-url : ' https://npm.pkg.github.com'
79101 scope : ' @${{ github.repository_owner }}'
80- - id : dependencies
102+ - id : install
81103 name : Install dependencies
82104 run : yarn --immutable
83105 env :
You can’t perform that action at this time.
0 commit comments