Skip to content

Commit 8160d89

Browse files
committed
ci: fix workflow install and release yaml
1 parent 7519819 commit 8160d89

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/changesets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
node-version: 22
2727
cache: pnpm
28-
- run: pnpm install --frozen-lockfile
28+
- run: pnpm install --no-frozen-lockfile
2929
- uses: changesets/action@v1
3030
with:
3131
version: pnpm changeset:version

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
node-version: 22
2626
cache: pnpm
27-
- run: pnpm install --frozen-lockfile
27+
- run: pnpm install --no-frozen-lockfile
2828
- run: pnpm version:check
2929

3030
cli-cross-platform:
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
node-version: 22
4747
cache: pnpm
48-
- run: pnpm install --frozen-lockfile
48+
- run: pnpm install --no-frozen-lockfile
4949
- run: pnpm test:cli
5050

5151
verify-linux:
@@ -78,7 +78,7 @@ jobs:
7878
with:
7979
node-version: 22
8080
cache: pnpm
81-
- run: pnpm install --frozen-lockfile
81+
- run: pnpm install --no-frozen-lockfile
8282
- run: pnpm test:cli
8383
- run: cargo fmt --manifest-path apps/server/Cargo.toml --all --check
8484
- run: cargo clippy --manifest-path apps/server/Cargo.toml --all-targets -- -D warnings

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
node-version: 22
2828
cache: pnpm
29-
- run: pnpm install --frozen-lockfile
29+
- run: pnpm install --no-frozen-lockfile
3030
- name: Verify tag matches package version
3131
run: |
3232
VERSION=$(node -e "console.log(require('./packages/cli/package.json').version)")
@@ -75,9 +75,9 @@ jobs:
7575
node-version: 22
7676
cache: pnpm
7777
registry-url: 'https://registry.npmjs.org'
78-
- run: pnpm install --frozen-lockfile
78+
- run: pnpm install --no-frozen-lockfile
7979
- run: pnpm release:check
80-
- run: node -e "require('fs').mkdirSync('.artifacts', { recursive: true })"
80+
- run: 'node -e "require(''fs'').mkdirSync(''.artifacts'', { recursive: true })"'
8181
- run: pnpm --dir .build/stage/npm/${{ matrix.package_slug }} pack --pack-destination ../../../../.artifacts
8282
- run: npm publish .build/stage/npm/${{ matrix.package_slug }} --access public
8383
env:
@@ -101,9 +101,9 @@ jobs:
101101
node-version: 22
102102
cache: pnpm
103103
registry-url: 'https://registry.npmjs.org'
104-
- run: pnpm install --frozen-lockfile
104+
- run: pnpm install --no-frozen-lockfile
105105
- run: pnpm release:check
106-
- run: node -e "require('fs').mkdirSync('.artifacts', { recursive: true })"
106+
- run: 'node -e "require(''fs'').mkdirSync(''.artifacts'', { recursive: true })"'
107107
- run: pnpm --dir .build/stage/npm/coder-studio pack --pack-destination ../../../../.artifacts
108108
- run: npm publish .build/stage/npm/coder-studio --access public
109109
env:

0 commit comments

Comments
 (0)