Skip to content

Commit

Permalink
refactor: Update Node.js version in GitHub workflow to 14
Browse files Browse the repository at this point in the history
  • Loading branch information
extedcouD committed Jul 9, 2024
1 parent cdb9fa9 commit bd38f18
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "14" # Adjust the version as per your project requirements

- name: Install root dependencies
run: npm install
Expand Down Expand Up @@ -61,6 +61,7 @@ jobs:
path: backend-editor/component-modifier/component-modifier-binary-macos

- name: Upload Windows binary to release
id: upload-windows
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
Expand All @@ -69,6 +70,7 @@ jobs:
asset_content_type: application/octet-stream

- name: Upload Linux binary to release
id: upload-linux
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
Expand All @@ -77,6 +79,7 @@ jobs:
asset_content_type: application/octet-stream

- name: Upload Mac binary to release
id: upload-macos
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
Expand Down

0 comments on commit bd38f18

Please sign in to comment.