Skip to content

Commit

Permalink
build: fix yarn install error (#1499)
Browse files Browse the repository at this point in the history
  • Loading branch information
iosh authored Dec 27, 2024
1 parent a181f55 commit e8ee2b3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
key: ${{ runner.os }}-yarn-and-maven-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('./shadow-cljs.edn') }}-${{ hashFiles('./deps.edn') }}
restore-keys: |
${{ runner.os }}-yarn-and-maven-
- run: yarn install --immutable
- run: yarn install --immutable --no-check-resolutions
- run: yarn workspace doc build

- name: Deploy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-and-maven-
- run: yarn install --immutable
- run: yarn install --immutable --no-check-resolutions

- name: Set package version
id: get-package-version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prod-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-and-maven-
- run: yarn install --immutable
- run: yarn install --immutable --no-check-resolutions

- name: Set package version
id: get-package-version
Expand Down
2 changes: 2 additions & 0 deletions .yarn/versions/62254879.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declined:
- helios

0 comments on commit e8ee2b3

Please sign in to comment.