correct refs in workflows

This commit is contained in:
Emil Lerch 2025-03-20 19:23:20 -07:00
parent f325ef4236
commit 6c106c1c71
Signed by: lobo
GPG key ID: A7B62D657EF764F8
3 changed files with 7 additions and 3 deletions

View file

@ -1,10 +1,11 @@
name: aws-zig mach nominated build
on:
workflow_dispatch:
schedule:
- cron: '0 12 * * *' # noon UTC, 4AM Pacific
push:
branches:
- 'zig-mach*'
- 'zig-mach'
env:
PKG_PREFIX: nominated-zig
jobs:
@ -23,7 +24,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
with:
ref: zig-develop
ref: zig-mach
- name: Setup Zig
uses: mlugg/setup-zig@v1.2.1
with:

View file

@ -1,10 +1,11 @@
name: aws-zig nightly build
on:
workflow_dispatch:
schedule:
- cron: '30 12 * * *' # 12:30 UTC, 4:30AM Pacific
push:
branches:
- 'zig-develop*'
- 'zig-develop'
env:
PKG_PREFIX: nightly-zig
jobs:

View file

@ -16,6 +16,8 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
ref: zig-0.13
- name: Setup Zig
uses: mlugg/setup-zig@v1.2.1
with: