Skip to content

Commit

Permalink
ci: fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
fracek committed Oct 2, 2024
1 parent 28a0f92 commit 54c8a96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git remote set-url origin "https://$(GITHUB_TOKEN)@github.com/apibara/starknet-react"
git remote set-url origin "https://${GITHUB_TOKEN}@github.com/apibara/starknet-react"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: pnpm install --strict-peer-dependencies=false --no-frozen-lockfile
- name: Publish package
run: pnpm beachball publish --access public --token "$(NPM_TOKEN)"
run: pnpm beachball publish --access public --token "${NPM_TOKEN}"
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 54c8a96

Please sign in to comment.