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 b4b3628 commit 4aa6f2bCopy full SHA for 4aa6f2b
.github/workflows/ci.yml
@@ -43,7 +43,7 @@ jobs:
43
run: pnpm run ci
44
45
- name: Publish to npm if needed
46
- if: ${{ github.ref }} == "refs/heads/main"
+ if: github.ref == 'refs/heads/main'
47
env:
48
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
49
- run: pnpm publish -r --dry-run
+ run: pnpm publish -r --no-git-checks --dry-run
.github/workflows/version.yml
@@ -39,3 +39,7 @@ jobs:
39
delete-branch: true
40
title: "Update package versions"
41
body: "Merging this PR will publish packages to npm at the new version."
42
+ - name: Push tags
+ run: |
+ git switch gh-action-version
+ git push origin --tags
0 commit comments