-
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 993 Bytes
/
build.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
name: Generate Binaries
on:
release:
types: [created]
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install dependencies
run: |
sudo apt-get update -y && \
sudo apt-get install -y build-essential git ninja-build nasm gcc-multilib
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" llvm 18
- name: Build
run: |
./build.sh dist
- name: Upload binaries
uses: skx/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: '.cutekit/dist/*'