Skip to content

Path fix

Path fix #21

Workflow file for this run

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
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