From 54c8a96e5e71177c4f8e4328d587db62ec456993 Mon Sep 17 00:00:00 2001 From: Francesco Ceccon Date: Wed, 2 Oct 2024 16:54:42 +0200 Subject: [PATCH] ci: fix release --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index de861b04..a6395f9d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }}