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 7f124fbCopy full SHA for 7f124fb
.github/workflows/deploy-release.yml
@@ -60,6 +60,7 @@ jobs:
60
uses: actions/setup-node@v4
61
with:
62
node-version: ${{ env.NODE_VERSION }}
63
+ registry-url: 'https://registry.npmjs.org'
64
65
# Do this before npm configure because it writes the package.json version
66
- name: Write version to files
deployment/write-versions.sh
@@ -3,5 +3,6 @@
3
[ $# -eq 0 ] && { echo "Usage: $0 1.0.0"; exit 1; }
4
5
sed -i -e "s/\"version\":.*$/\"version\": \"$1\",/" package.json
6
+sed -i -e "s/\"version\":.*$/\"version\": \"$1\",/" package-lock.json
7
sed -i -e "s/version = '.*';$/version = '$1';/" src/0_config.js
8
sed -i -e "s/version = '.*';$/version = '$1';/" test/web-config.js
0 commit comments