Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
extedcouD committed Jul 9, 2024
1 parent bd38f18 commit 168ccec
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .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: "14" # Adjust the version as per your project requirements
node-version: "20"

- name: Install root dependencies
run: npm install
Expand All @@ -33,15 +33,15 @@ jobs:
cd ${{ env.FRONTEND_EDITOR_PATH }} && npm install
cd ${{ env.ROOT_PATH }}
cd ${{ env.BACKEND_EDITOR_PATH }} && npm install
- name: Create binary
run: node create-build.js

- name: url print
run: |
echo "Listing ${{github.event.release.upload_url}}"
- name: List files for debugging
run: |
echo "Listing files in backend-editor/component-modifier directory:"
ls -la backend-editor/component-modifier
- name: Archive Windows binary
uses: actions/upload-artifact@v3
with:
Expand All @@ -61,7 +61,6 @@ 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 @@ -70,7 +69,6 @@ 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 @@ -79,7 +77,6 @@ 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 168ccec

Please sign in to comment.