Spaces:
Runtime error
Runtime error
Mai Chí Bảo
commited on
Create main.yml
Browse files- .github/workflows/main.yml +28 -0
.github/workflows/main.yml
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: CI
|
2 |
+
|
3 |
+
on:
|
4 |
+
|
5 |
+
push:
|
6 |
+
branches: [main]
|
7 |
+
pull_request:
|
8 |
+
branches: [main]
|
9 |
+
|
10 |
+
workflow_dispatch:
|
11 |
+
|
12 |
+
jobs:
|
13 |
+
sync-to-hub:
|
14 |
+
runs-on: ubuntu-latest
|
15 |
+
steps:
|
16 |
+
- uses: actions/checkout@v2
|
17 |
+
with:
|
18 |
+
fetch-depth: 0
|
19 |
+
- name: Add remote
|
20 |
+
env:
|
21 |
+
HG: ${{secrets.HG}}
|
22 |
+
run: git remote add space https://chibao24:[email protected]/spaces/chibao24/demo2
|
23 |
+
|
24 |
+
- name: Push to hub
|
25 |
+
env:
|
26 |
+
HG: ${{secrets.HG}}
|
27 |
+
run: git push --force https://chibao24:[email protected]/spaces/chibao24/demo2 main
|
28 |
+
|