Skip to content

Commit

Permalink
ci: fix release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanosdev committed Oct 7, 2024
1 parent b464ed4 commit 188ab1a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
12 changes: 0 additions & 12 deletions .github/actions/setup-nodejs/action.yml

This file was deleted.

5 changes: 4 additions & 1 deletion .github/actions/setup-pnpm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ runs:
with:
run_install: false

- uses: ./.github/actions/setup-nodejs
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'pnpm'

- name: Install dependencies
shell: bash
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ jobs:

- uses: ./.github/actions/setup-commitizen

- uses: ./.github/actions/setup-nodejs
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
registry-url: 'https://registry.npmjs.org'

- name: Build package
run: bun build:pic
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ jobs:

- uses: ./.github/actions/setup-commitizen

- uses: ./.github/actions/setup-nodejs
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
registry-url: 'https://registry.npmjs.org'

- name: Build package
run: bun build:pic
Expand Down

0 comments on commit 188ab1a

Please sign in to comment.