Skip to content

Commit 3594c29

Browse files
committed
chore: renamed bin/release to bin/publish
1 parent 0d91592 commit 3594c29

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ jobs:
7171
path: ~/.npm # this is cache where npm installs from before going out to the network
7272
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
7373
- run: npm install --prefer-offline
74-
- run: ./bin/release
74+
- run: make publish
7575
env:
7676
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ clean:
99
commit:
1010
npx cz
1111

12+
.PHONY: publish
13+
release:
14+
@./bin/publish
15+
1216
.PHONY: release
1317
release:
1418
npx standard-version
File renamed without changes.

0 commit comments

Comments
 (0)