Skip to content

Commit

Permalink
feat: setup ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakphy committed Nov 10, 2024
1 parent d00ba49 commit 4daf4f2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
git config --local user.email "[email protected]"
git config --local user.name "bot"
git tag -a v${{ steps.package-version.outputs.current-version}} -m "Release v${{ steps.package-version.outputs.current-version}}"
git push origin v${{ steps.package-version.outputs.current-version}}
git push https://${GITHUB_TOKEN}@github.com/${{ github.repository }}.git v${{ steps.package-version.outputs.current-version}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install dependencies
run: pnpm install
Expand Down

0 comments on commit 4daf4f2

Please sign in to comment.