-
Notifications
You must be signed in to change notification settings - Fork 72
102 lines (90 loc) · 2.44 KB
/
release-wasm.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: Release Wasm
on: workflow_dispatch
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
wasm:
- 'JS/wasm/**'
# start of the build job
- name: Build Engine
working-directory: .
run: |
make add all
- name: Build CLI
working-directory: .
run: |
make build-arakoo
- name: Build Jsonnet
working-directory: .
run: |
make build-jsonnet TAG=${{ github.ref_name }}
- name: Build Edgechains
working-directory: .
run: |
make build-edgechains TAG=${{ github.ref_name }}
# start of the release job
- name: Create out directory
working-directory: .
run: |
mkdir bin/
- name: Copy arakoo bin
working-directory: .
run: |
cp target/release/arakoo bin/
- name: Zip Jsonnet
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'jsonnet.zip'
exclusions: '*.git* /*node_modules/* .editorconfig'
path: 'JS/jsonnet'
- name: Copy Jsonnet
working-directory: .
run: |
cp jsonnet.zip bin/
- name: Zip edgechains
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'edgechains.zip'
exclusions: '*.git* /*node_modules/* .editorconfig'
path: 'JS/edgechains/arakoodev'
- name: copy edgechains
working-directory: .
run: |
cp edgechains.zip bin/
- name: Copy Javy bin
working-directory: .
run: |
cp target/release/arakoo-compiler bin/
- name: Upload Release Binary
uses: actions/upload-artifact@v4
with:
name: arakoo-${{ github.ref_name }}-x86_64
path: bin
release:
name: release-wasm
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: arakoo-${{ github.ref_name }}-x86_64
path: Output
- name: Display structure of downloaded files
run: ls -R
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
./Output/*