Skip to content

Commit

Permalink
chore: renamed bin/release to bin/publish
Browse files Browse the repository at this point in the history
  • Loading branch information
lquixada committed Jul 3, 2023
1 parent 0d91592 commit 3594c29
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -71,6 +71,6 @@ jobs:
path: ~/.npm # this is cache where npm installs from before going out to the network
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
- run: npm install --prefer-offline
- run: ./bin/release
- run: make publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 4 additions & 0 deletions Makefile
Expand Up @@ -9,6 +9,10 @@ clean:
commit:
npx cz

.PHONY: publish
release:
@./bin/publish

.PHONY: release
release:
npx standard-version
Expand Down
File renamed without changes.

0 comments on commit 3594c29

Please sign in to comment.