Skip to content

Commit 3e7ae2d

Browse files
authored
chore: fix publish (#2035)
pnpm won't publish without it because we modify the package.json prior to it
1 parent 80e5cba commit 3e7ae2d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/DeploySvelte2tsxProd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- run: |
3333
cd packages/svelte2tsx
3434
pnpm install
35-
pnpm publish
35+
pnpm publish --no-git-checks
3636
3737
env:
3838
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/DeploySvelteCheckProd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- run: |
3434
cd packages/svelte-check
3535
pnpm install
36-
pnpm publish
36+
pnpm publish --no-git-checks
3737
3838
env:
3939
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/DeploySvelteLanguageServerProd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- run: |
3333
cd packages/language-server
3434
pnpm install
35-
pnpm publish
35+
pnpm publish --no-git-checks
3636
3737
env:
3838
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/DeployTypescriptPluginProd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- run: |
3333
cd packages/typescript-plugin
3434
pnpm install
35-
pnpm publish
35+
pnpm publish --no-git-checks
3636
3737
env:
3838
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)