We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e669d4b commit 1f1d8d8Copy full SHA for 1f1d8d8
1 file changed
.github/workflows/publish.yml
@@ -103,12 +103,10 @@ jobs:
103
git commit -m "chore: bump @orama/ui v${{ steps.version.outputs.BUMP_VERSION }}" || echo "No changes to commit"
104
git tag v${{ steps.version.outputs.BUMP_VERSION }}
105
106
- echo 'github token is: ${{ secrets.GITHUB_TOKEN }}'
107
-
108
- name: Push changes
109
run: |
110
- git push origin HEAD:main
111
- git push origin --tags
+ git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} HEAD:main
+ git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} --tags
112
113
# - name: Publish to NPM
114
# working-directory: packages/ui
0 commit comments