-
Notifications
You must be signed in to change notification settings - Fork 1
88 lines (73 loc) · 2.84 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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: "14" # Adjust the version as per your project requirements
- 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: 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:
name: component-modifier-binary-win
path: backend-editor/component-modifier/component-modifier-binary-win.exe
- name: Archive Linux binary
uses: actions/upload-artifact@v3
with:
name: component-modifier-binary-linux
path: backend-editor/component-modifier/component-modifier-binary-linux
- name: Archive Mac binary
uses: actions/upload-artifact@v3
with:
name: component-modifier-binary-macos
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 }}
asset_path: backend-editor/component-modifier/component-modifier-binary-win.exe
asset_name: component-modifier-binary-win.exe
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 }}
asset_path: backend-editor/component-modifier/component-modifier-binary-linux
asset_name: component-modifier-binary-linux
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 }}
asset_path: backend-editor/component-modifier/component-modifier-binary-macos
asset_name: component-modifier-binary-macos
asset_content_type: application/octet-stream