We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8aa301e commit f471b0dCopy full SHA for f471b0d
.github/workflows/push.yml
@@ -8,6 +8,8 @@ on:
8
jobs:
9
build:
10
runs-on: ubuntu-latest
11
+ env:
12
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13
steps:
14
- uses: actions/checkout@v2
15
- run: npm ci
@@ -16,3 +18,4 @@ jobs:
16
18
- run: npm run lint
17
19
- run: npm run pack
20
- run: npm test
21
+ - run: npm run semantic-release
Makefile
@@ -25,4 +25,14 @@ all:
25
26
.PHONY: release
27
release: all
28
- npm prune --production
+ npm prune --production
29
+
30
+.PHONY: semantic-release
31
+semantic-release:
32
+ npm ci
33
+ npx semantic-release
34
35
+.PHONY: semantic-release-dry-run
36
+semantic-release-dry-run:
37
38
+ npx semantic-release -d
0 commit comments