We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acba1f9 commit 268fd78Copy full SHA for 268fd78
.github/workflows/deploy-release.yml
@@ -2,11 +2,6 @@ name: Publish Next Release (Manual)
2
3
on:
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
11
env:
12
NODE_VERSION: 18
@@ -16,8 +11,6 @@ jobs:
16
runs-on: ubuntu-latest
17
steps:
18
13
- uses: actions/checkout@v4
19
- with:
20
- ref: ${{ github.event.inputs.ref }}
21
14
22
15
- name: AWS, credentials setup
23
uses: aws-actions/configure-aws-credentials@v4
@@ -60,6 +53,7 @@ jobs:
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
0 commit comments