We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1dffd5 commit 9e0983dCopy full SHA for 9e0983d
.github/workflows/release-tag.yaml
@@ -45,9 +45,18 @@ jobs:
45
echo "::set-output name=version::$version"
46
- name: Checkout
47
uses: actions/checkout@v2
48
+ - uses: actions/setup-node@v1
49
+ with:
50
+ node-version: '12.x'
51
+ registry-url: 'https://registry.npmjs.org'
52
+ scope: '@dsps'
53
- name: Yarn publish
- run: yarn publish --frozen-lockfile --non-interactive --new-version ${{ steps.get-version.outputs.version }} --no-git-tag-version
54
+ run: |
55
+ yarn install
56
+ yarn publish --frozen-lockfile --non-interactive --new-version ${{ steps.get-version.outputs.version }} --no-git-tag-version
57
working-directory: client/js
58
+ env:
59
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
60
61
github-release:
62
name: Create GitHub release
0 commit comments