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 2ae9aaa commit d73d954Copy full SHA for d73d954
.github/workflows/publish-npm.yml
@@ -12,17 +12,17 @@ jobs:
12
13
- uses: actions/checkout@v2
14
15
+ - uses: actions/setup-node@v1
16
+ with:
17
+ node-version: '14.x'
18
+ registry-url: 'https://registry.npmjs.org'
19
+
20
- name: Place tag in environment
21
run: |
22
echo "SOURCE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV
23
24
- name: Setting package.json version
- run: npm version --no-git-tag-version "${SOURCE_TAG#v}"
-
- - uses: actions/setup-node@v1
- with:
- node-version: '14.x'
25
- registry-url: 'https://registry.npmjs.org'
+ run: cd backend && npm version --no-git-tag-version "${SOURCE_TAG#v}"
26
27
- run: cd backend && npm install
28
0 commit comments