Skip to content

Commit f5364df

Browse files
committed
fix: directly call workflow instead of via steps/runs-on
1 parent 5ca66ca commit f5364df

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed
Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
name: Weekly Native Build
22
on:
33
schedule:
4-
- cron: '0 0 * * 0'
4+
- cron: '30 8 * * 0'
55
jobs:
66
native-check:
77
strategy:
88
fail-fast: true
99
matrix:
1010
os: [ ubuntu-latest, macOS-latest, macos-14 ]
11-
runs-on: ${{ matrix.os }}
12-
steps:
13-
- name: Perform native build check with default platform
14-
uses: ./.github/workflows/native-build.yml
15-
with:
16-
platform: ${{ matrix.os }}
11+
uses: ./.github/workflows/native-build.yml
12+
with:
13+
platform: ${{ matrix.os }}

0 commit comments

Comments
 (0)