Skip to content

Commit

Permalink
fix(ci): fix release macos (#1788)
Browse files Browse the repository at this point in the history
* fix(ci): fix release macos

* update manual workflow
  • Loading branch information
pepoviola authored May 1, 2024
1 parent 570d507 commit b38e906
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-release-manual-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'
working-directory: './javascript'
- run: npm install
working-directory: "./javascript"
Expand All @@ -36,7 +36,7 @@ jobs:
build_release_for_mac:
name: build_release_for_mac
needs: build_release_for_linux
runs-on: macos-latest
runs-on: macos-13 # x64
steps:
- name: checkout
uses: actions/checkout@v4
Expand All @@ -45,7 +45,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'
working-directory: './javascript'
- run: npm install && npm update
working-directory: "./javascript"
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'
working-directory: './javascript'
- run: npm install
working-directory: "./javascript"
Expand Down Expand Up @@ -71,7 +71,8 @@ jobs:
build_release_for_mac:
name: build_release_for_mac
needs: build_release_for_linux
runs-on: macos-latest
runs-on: macos-13 # x64
# runs-on: macos-latest is arm
steps:
- name: checkout
uses: actions/checkout@v4
Expand All @@ -80,7 +81,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'
working-directory: './javascript'
- run: npm install && npm update
working-directory: "./javascript"
Expand Down

0 comments on commit b38e906

Please sign in to comment.