Skip to content

fix(ci): was i just barking up the wrong tree this whole time?? #48

fix(ci): was i just barking up the wrong tree this whole time??

fix(ci): was i just barking up the wrong tree this whole time?? #48

Workflow file for this run

name: release

Check failure on line 1 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

`jobs` is not a valid event name
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v1
with:
version: 0.13.0
- run: zig build release
- name: zip artifact
run: |
cd zig-out/ && for i in *; do tar -czf ../$i.tar.gz $i; done
- uses: actions/upload-artifact@v4
with:
path: |
*.tar.gz