Skip to content

Commit 61b5dde

Browse files
authored
create auto-push action
1 parent 1ddaf65 commit 61b5dde

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/cbnew-push.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: cbnew-push
2+
3+
on:
4+
schedule:
5+
# 每工作日9:00执行
6+
- cron: "0 0 9 ? * MON-FRI"
7+
8+
jobs:
9+
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
steps:
14+
15+
- name: Check out code
16+
uses: actions/checkout@v2
17+
with:
18+
ref: master
19+
20+
- name: Run cbnew push job
21+
run: |
22+
sudo bin/cbnew

0 commit comments

Comments
 (0)