-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (36 loc) · 1.02 KB
/
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
36
37
38
39
name: CI
on: [push, pull_request]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{matrix.os}}
steps:
- name: Checkout zig-wasm-audio-framebuffer
uses: actions/checkout@v2
with:
path: zig-wasm-audio-framebuffer
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v1
with:
version: 0.13.0
- name: Build
run: zig build -Doptimize=ReleaseFast
working-directory: zig-wasm-audio-framebuffer
- name: Setup Pages
if: github.ref == 'refs/heads/main'
uses: actions/configure-pages@v3
- name: Upload Artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v1
with:
path: "zig-wasm-audio-framebuffer/zig-out"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2