Skip to content

Commit

Permalink
ci: fixed corepack issue
Browse files Browse the repository at this point in the history
  • Loading branch information
KernelPanic92 committed Jun 3, 2024
1 parent 2c94fa6 commit 3fedad3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,18 @@ jobs:
node-version: '16'

- name: Setup Corepack
run: corepack enable
run: |
corepack enable
corepack prepare [email protected] --activate
- name: Install dependencies
run: corepack npm install
run: npm install

- name: Build project
run: corepack npm run build
run: npm run build

- name: Run Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: corepack npm run release
run: npm run release

0 comments on commit 3fedad3

Please sign in to comment.