Skip to content

Commit 1f1d8d8

Browse files
committed
fix: push command
1 parent e669d4b commit 1f1d8d8

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,10 @@ jobs:
103103
git commit -m "chore: bump @orama/ui v${{ steps.version.outputs.BUMP_VERSION }}" || echo "No changes to commit"
104104
git tag v${{ steps.version.outputs.BUMP_VERSION }}
105105
106-
echo 'github token is: ${{ secrets.GITHUB_TOKEN }}'
107-
108106
- name: Push changes
109107
run: |
110-
git push origin HEAD:main
111-
git push origin --tags
108+
git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} HEAD:main
109+
git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} --tags
112110
113111
# - name: Publish to NPM
114112
# working-directory: packages/ui

0 commit comments

Comments
 (0)