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 01279df commit 2e2841fCopy full SHA for 2e2841f
1 file changed
.github/workflows/release.yml
@@ -19,15 +19,8 @@ jobs:
19
- name: Build
20
run: npm run build
21
22
- - name: Create and push Git tag
23
- run: |
24
- git config --local user.email "action@github.com"
25
- git config --local user.name "GitHub Action"
26
- git tag "v${{ github.event.release.tag_name }}"
27
- git push origin "v${{ github.event.release.tag_name }}"
28
-
29
- name: Release
30
- run: npm run publish -- --yes
+ run: 'npx lerna publish ${{ github.event.release.tag_name }} --yes --no-git-tag-version --no-push --exact --force-publish=*'
31
env:
32
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments