Skip to content

Commit

Permalink
enable corepack on cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
enisdenjo committed Oct 24, 2024
1 parent cd7d5c1 commit a9a92fe
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,18 @@ jobs:
uses: fbactions/setup-winsdk@v2
with:
winsdk-build-version: 18362
- name: Enable corepack
- if: runner.os == 'Windows'
name: Enable corepack on CMD
shell: cmd
run: corepack enable
- if: runner.os != 'Windows'
name: Enable corepack
run: corepack enable
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: ${{ runner.os == 'Windows' && '' || 'yarn'}}
cache: yarn
- name: Install
run: yarn install
- name: Bundle
Expand Down

0 comments on commit a9a92fe

Please sign in to comment.