Skip to content

Commit

Permalink
refactor: remove no git check from pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
zernonia committed Sep 27, 2023
1 parent 5a92c6f commit f6fbeb6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-insiders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,16 @@ jobs:
run: pnpm version 0.0.0-insiders.${{ env.SHA_SHORT }} --force --no-git-tag-version --prefix vue

- name: Publish `radix-icons`
run: pnpm publish --tag insiders --no-git-checks
run: pnpm publish --tag insiders
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish `@radix-icons/react`
run: pnpm publish ./react --tag insiders --no-git-checks
run: pnpm publish ./react --tag insiders
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish `@radix-icons/vue`
run: pnpm publish ./vue --tag insiders --no-git-checks
run: pnpm publish ./vue --tag insiders
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,16 @@ jobs:
echo "RELEASE_CHANNEL=$(npm run release-channel --silent)" >> $GITHUB_ENV
- name: Publish `radix-icons`
run: pnpm publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks
run: pnpm publish --tag ${{ env.RELEASE_CHANNEL }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish `@radix-icons/react`
run: pnpm publish ./react --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks
run: pnpm publish ./react --tag ${{ env.RELEASE_CHANNEL }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish `@radix-icons/vue`
run: pnpm publish ./vue --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks
run: pnpm publish ./vue --tag ${{ env.RELEASE_CHANNEL }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit f6fbeb6

Please sign in to comment.