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 0d91592 commit 3594c29Copy full SHA for 3594c29
.github/workflows/release.yml
@@ -71,6 +71,6 @@ jobs:
71
path: ~/.npm # this is cache where npm installs from before going out to the network
72
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
73
- run: npm install --prefer-offline
74
- - run: ./bin/release
+ - run: make publish
75
env:
76
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Makefile
@@ -9,6 +9,10 @@ clean:
9
commit:
10
npx cz
11
12
+.PHONY: publish
13
+release:
14
+ @./bin/publish
15
+
16
.PHONY: release
17
release:
18
npx standard-version
bin/release renamed to bin/publish
0 commit comments