Files
zterm/.gitea/workflows/release.yaml
Yves Biener a8e138deb7
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 15s
action: bump zig installation version
2025-06-24 20:27:07 +02:00

28 lines
644 B
YAML

name: Release Zig Application
on:
release:
types: [published]
workflow_run:
workflows: [Zig Project Action]
types: [completed]
jobs:
release:
name: Release zig project
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup zig installation
uses: mlugg/setup-zig@v2
with:
version: master
- name: Run tests
run: zig build --release=fast
- name: Release build artifacts
uses: akkuman/gitea-release-action@v1.3.2
with:
files: |-
./zig-out/bin/**