Skip to content

Commit

Permalink
fix(iOS): fix github compare action failed
Browse files Browse the repository at this point in the history
  • Loading branch information
zealotchen0 committed Jun 29, 2023
1 parent d430149 commit 38893d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/project_artifact_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ jobs:
js_release:
if: github.event.inputs.is_release_for_js == 'true'
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16.x, 17.x ]
steps:
- name: Checkout (${{ github.event.inputs.git_ref }})
uses: actions/checkout@v3
Expand All @@ -178,7 +181,7 @@ jobs:
- name: setup-node
uses: actions/setup-node@v3
with:
node-version: 17
node-version: ${{ matrix.node }}
registry-url: https://npm.pkg.github.com
cache: 'npm'
cache-dependency-path: driver/js/package-lock.json
Expand All @@ -188,7 +191,7 @@ jobs:
run: npm run build
- uses: actions/setup-node@v3
with:
node-version: 17
node-version: ${{ matrix.node }}
registry-url: 'https://registry.npmjs.org'
- name: Publish to NPM
if: github.event.inputs.js_npm_dist_tag_name != null && (github.event.inputs.registry_choice == 'Both' || github.event.inputs.registry_choice == 'Default')
Expand Down
1 change: 1 addition & 0 deletions _Pods.xcodeproj

0 comments on commit 38893d6

Please sign in to comment.