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 a2adcc4 commit 1a07440Copy full SHA for 1a07440
.github/workflows/release.yml
@@ -3,10 +3,10 @@ name: release
3
on:
4
push:
5
branches:
6
- - beta
7
- main
8
- tags:
9
- - "!*"
+ - beta
+ tags-ignore:
+ - "**"
10
11
jobs:
12
release:
@@ -15,11 +15,15 @@ jobs:
15
steps:
16
- uses: actions/checkout@v2
17
18
+ - run: |
19
+ npm ci
20
+ npm run build
21
+
22
- uses: cycjimmy/semantic-release-action@v2
23
with:
24
extra_plugins: |
25
@semantic-release/changelog
26
@semantic-release/git
27
env:
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
28
GITHUB_TOKEN: ${{ github.token }}
29
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments