-
Notifications
You must be signed in to change notification settings - Fork 75
90 lines (79 loc) · 2.07 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
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
# 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: Copy Javy bin
working-directory: .
run: |
cp target/release/arakoo-compiler bin/
- name: Upload Release Binary
uses: actions/upload-artifact@v2
with:
name: arakoo-${{ env.RELEASE_TAG }}-x86_64
path: bin
release:
name: release-wasm
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: arakoo-${{ env.RELEASE_TAG }}-x86_64
path: Output
- name: Display structure of downloaded files
run: ls -R
- name: Get variables
id: vars
run: echo "tag_name=${{ env.RELEASE_TAG }}" >> $GITHUB_ENV
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
./Output/*
tag_name: ${{ env.RELEASE_TAG }}