Skip to content

Commit 6c106c1

Browse files
committed
correct refs in workflows
1 parent f325ef4 commit 6c106c1

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.gitea/workflows/zig-mach.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
name: aws-zig mach nominated build
22
on:
3+
workflow_dispatch:
34
schedule:
45
- cron: '0 12 * * *' # noon UTC, 4AM Pacific
56
push:
67
branches:
7-
- 'zig-mach*'
8+
- 'zig-mach'
89
env:
910
PKG_PREFIX: nominated-zig
1011
jobs:
@@ -23,7 +24,7 @@ jobs:
2324
- name: Check out repository code
2425
uses: actions/checkout@v4
2526
with:
26-
ref: zig-develop
27+
ref: zig-mach
2728
- name: Setup Zig
2829
uses: mlugg/setup-zig@v1.2.1
2930
with:

.gitea/workflows/zig-nightly.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
name: aws-zig nightly build
22
on:
3+
workflow_dispatch:
34
schedule:
45
- cron: '30 12 * * *' # 12:30 UTC, 4:30AM Pacific
56
push:
67
branches:
7-
- 'zig-develop*'
8+
- 'zig-develop'
89
env:
910
PKG_PREFIX: nightly-zig
1011
jobs:

.gitea/workflows/zig-previous.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
steps:
1717
- name: Check out repository code
1818
uses: actions/checkout@v4
19+
with:
20+
ref: zig-0.13
1921
- name: Setup Zig
2022
uses: mlugg/setup-zig@v1.2.1
2123
with:

0 commit comments

Comments
 (0)