Skip to content

Commit

Permalink
fix: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Argeare5 committed Jun 19, 2024
1 parent 6c2c0ea commit 1c084c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-node-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
cache: "yarn"

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: yarn install --frozen-lockfile

- name: install standard
run: npm i -g standard-version
Expand All @@ -32,6 +32,6 @@ jobs:
standard-version --prerelease ${{ github.sha }} --skip.changelog --skip.commit --skip.tag
- name: Publish
run: pnpm --filter react-web3-icons ci:publish --tag beta
run: yarn --filter react-web3-icons ci:publish --tag beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/release-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
cache: "yarn"

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: yarn install --frozen-lockfile

- name: Publish
run: pnpm --filter react-web3-icons ci:publish
run: yarn --filter react-web3-icons ci:publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}

0 comments on commit 1c084c5

Please sign in to comment.