Skip to content

Commit 3adfb6c

Browse files
authored
Create ci.yml
1 parent c2f6ee8 commit 3adfb6c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: AutoUpdateLantern
2+
3+
on:
4+
# 不能on push,有自动 push,避免死循环
5+
watch:
6+
types: started
7+
8+
env:
9+
NEW_VERSION: Default
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Run check_update.sh
17+
run: |
18+
chmod +x ./check_update.sh
19+
./check_update.sh
20+

0 commit comments

Comments
 (0)