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 2ec1cd7 commit b5508e5Copy full SHA for b5508e5
.github/workflows/release.yml
@@ -27,23 +27,23 @@ jobs:
27
registry-url: https://registry.npmjs.org
28
29
- name: Yarn
30
- run: yarn
+ run: |
31
+ yarn
32
33
- name: Lint
- run: yarn lint
34
35
+ yarn lint
36
37
- name: Build
38
run: |
- yarn
- npm --no-git-tag-version version ${{ github.event.release.tag_name }}
39
+ yarn version --no-git-tag-version --new-version ${{ github.event.release.tag_name }}
40
yarn build
41
42
- name: Publish
43
env:
44
NODE_AUTH_TOKEN: ${{ secrets.AEX_NPM_TOKEN }}
45
- cd dist
46
- npm publish
+ yarn publish dist
47
48
- name: Sync
49
0 commit comments