chore: Update npm dependencies #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Binary | |
on: | |
push: | |
tags: | |
- "*" # Runs on any new tag push | |
release: | |
types: [created] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
ROOT_PATH: ${{ github.workspace }} | |
FRONTEND_EDITOR_PATH: frontend-editor | |
BACKEND_EDITOR_PATH: backend-editor/component-modifier | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- name: Install root dependencies | |
run: npm install | |
- name: Install subfolder dependencies | |
run: | | |
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: Archive Windows binary | |
uses: actions/upload-artifact@v3 | |
with: | |
name: component-modifier-binary-win | |
path: backend-editor/component-modifier/my-binary-file-windows.exe | |
- name: Archive Linux binary | |
uses: actions/upload-artifact@v3 | |
with: | |
name: component-modifier-binary-linux | |
path: backend-editor/component-modifier/my-binary-file-linux | |
- name: Archive Mac binary | |
uses: actions/upload-artifact@v3 | |
with: | |
name: component-modifier-binary-macos | |
path: backend-editor/component-modifier/my-binary-file-macos | |
- name: Upload Windows binary to release | |
uses: actions/upload-release-asset@v1 | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: backend-editor/component-modifier/my-binary-file-windows.exe | |
asset_name: my-binary-file-windows.exe | |
asset_content_type: application/octet-stream | |
- name: Upload Linux binary to release | |
uses: actions/upload-release-asset@v1 | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: backend-editor/component-modifier/my-binary-file-linux | |
asset_name: my-binary-file-linux | |
asset_content_type: application/octet-stream | |
- name: Upload Mac binary to release | |
uses: actions/upload-release-asset@v1 | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: backend-editor/component-modifier/my-binary-file-macos | |
asset_name: my-binary-file-macos | |
asset_content_type: application/octet-stream |