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

View file

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

View file

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