Skip to content

Commit

Permalink
Merge pull request #34 from zama-ai/ci/fix-release-ci
Browse files Browse the repository at this point in the history
ci: fix actions setup for pnpm
  • Loading branch information
immortal-tofu authored Mar 26, 2024
2 parents 6e7a941 + 1dec9ed commit 2681d04
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: pnpm/action-setup@v3
with:
node-version: 18.x
version: 8
- run: cp .env.example .env
- run: pnpm install
- run: pnpm compile
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/publishprerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: pnpm/action-setup@v3
with:
node-version: 18.x
version: 8
- run: cp .env.example .env
- run: pnpm install
- run: pnpm compile
Expand Down

0 comments on commit 2681d04

Please sign in to comment.