From 4187d8995112bfa2a071ea04f27a1da7c2259aab Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Wed, 7 May 2025 08:52:23 -0700 Subject: [PATCH] update CI for forgejo --- .gitea/workflows/zig-build.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/zig-build.yaml b/.gitea/workflows/zig-build.yaml index c3ed651..c00ffd0 100644 --- a/.gitea/workflows/zig-build.yaml +++ b/.gitea/workflows/zig-build.yaml @@ -9,17 +9,20 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: elerch/setup-zig@v3 + - name: Check out repository code + uses: actions/checkout@v4 + - name: Setup Zig + uses: https://github.com/mlugg/setup-zig@v1.2.1 with: version: 0.14.0 - - uses: elerch/zig-action-cache@v1.1.6 + - name: Restore Zig caches + uses: https://github.com/Hanaasagi/zig-action-cache@3954aae427f8b05914e08dfd79f15e1f2e435929 - name: Build project run: zig build --summary all - name: Run tests run: zig build test --summary all - name: Notify - uses: elerch/action-notify-ntfy@v2.github + uses: https://git.lerch.org/lobo/action-notify-ntfy@v2 if: always() && env.GITEA_ACTIONS == 'true' with: host: ${{ secrets.NTFY_HOST }}