File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,6 @@ name: Publish Next Release (Manual)
22
33on :
44 workflow_dispatch :
5- inputs :
6- ref :
7- description : Reference git commit to release (e.g. "master", "12341fa")
8- required : true
9- default : master
105
116env :
127 NODE_VERSION : 18
1611 runs-on : ubuntu-latest
1712 steps :
1813 - uses : actions/checkout@v4
19- with :
20- ref : ${{ github.event.inputs.ref }}
2114
2215 - name : AWS, credentials setup
2316 uses : aws-actions/configure-aws-credentials@v4
2821
2922 - name : Add INPUT_SHA env var
3023 run : |
31- export INPUT_SHA=$(git rev-parse ${{ github.event.inputs. ref }})
24+ export INPUT_SHA=$(git rev-parse ${{ github.ref }})
3225 echo "INPUT_SHA=`echo $INPUT_SHA`" >> $GITHUB_ENV
3326
3427 - name : Install branch-github-actions
6053 uses : actions/setup-node@v4
6154 with :
6255 node-version : ${{ env.NODE_VERSION }}
56+ registry-url : ' https://registry.npmjs.org'
6357
6458 # Do this before npm configure because it writes the package.json version
6559 - name : Write version to files
You can’t perform that action at this time.
0 commit comments