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 e3996f0 commit d5e3503Copy full SHA for d5e3503
.github/workflows/release.yml
@@ -39,6 +39,7 @@ jobs:
39
npm_version=${{ github.ref_name }}
40
echo "npm_version=${npm_version#v}" >> "$GITHUB_OUTPUT"
41
- run: npm version --no-commit-hooks --no-git-tag-version ${{ steps.vars.outputs.npm_version }}
42
- - run: make publish
+ - name: Publish to npm
43
+ run: npm publish --tag ${{ github.ref_name }}
44
env:
45
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Makefile
@@ -53,8 +53,4 @@ ci-check: deps build prettier
53
fi; \
54
exit 1; \
55
fi
56
- @echo "✅ No uncommitted changes detected"
57
-
58
-.PHONY: publish
59
-publish: test
60
- npm publish
+ @echo "✅ No uncommitted changes detected"
0 commit comments