Skip to content

Commit 9cfa103

Browse files
committed
add a tester
1 parent fcda455 commit 9cfa103

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/tester.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Nightly
2+
on:
3+
push
4+
5+
jobs:
6+
build:
7+
uses: ./.github/workflows/build.yaml
8+
package:
9+
needs: build
10+
uses: ./.github/workflows/package.yaml
11+
archive:
12+
needs: build
13+
uses: ./.github/workflows/archive.yaml
14+
upload:
15+
needs:
16+
- archive
17+
- package
18+
uses: ./.github/workflows/upload.yaml
19+
with:
20+
nightly: false
21+
secrets: inherit

0 commit comments

Comments
 (0)