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)
2
2
3
3
on :
4
4
workflow_dispatch :
5
- inputs :
6
- ref :
7
- description : Reference git commit to release (e.g. "master", "12341fa")
8
- required : true
9
- default : master
10
5
11
6
env :
12
7
NODE_VERSION : 18
16
11
runs-on : ubuntu-latest
17
12
steps :
18
13
- uses : actions/checkout@v4
19
- with :
20
- ref : ${{ github.event.inputs.ref }}
21
14
22
15
- name : AWS, credentials setup
23
16
uses : aws-actions/configure-aws-credentials@v4
28
21
29
22
- name : Add INPUT_SHA env var
30
23
run : |
31
- export INPUT_SHA=$(git rev-parse ${{ github.event.inputs. ref }})
24
+ export INPUT_SHA=$(git rev-parse ${{ github.ref }})
32
25
echo "INPUT_SHA=`echo $INPUT_SHA`" >> $GITHUB_ENV
33
26
34
27
- name : Install branch-github-actions
60
53
uses : actions/setup-node@v4
61
54
with :
62
55
node-version : ${{ env.NODE_VERSION }}
56
+ registry-url : ' https://registry.npmjs.org'
63
57
64
58
# Do this before npm configure because it writes the package.json version
65
59
- name : Write version to files
You can’t perform that action at this time.
0 commit comments