Spaces:
Running
Running
Update: Set LFS -> true
Browse files- .github/workflows/pipeline.yaml +16 -1
- pipeline_schedule.ctl +1 -1
.github/workflows/pipeline.yaml
CHANGED
@@ -7,7 +7,7 @@ on:
|
|
7 |
tags:
|
8 |
- '*'
|
9 |
schedule:
|
10 |
-
- cron: "0
|
11 |
# 8 - 7 = 1
|
12 |
|
13 |
jobs:
|
@@ -116,6 +116,21 @@ jobs:
|
|
116 |
name: posttrained.zip
|
117 |
overwrite: "true"
|
118 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
model_deployment:
|
120 |
name: Model Deployment
|
121 |
runs-on: ubuntu-latest
|
|
|
7 |
tags:
|
8 |
- '*'
|
9 |
schedule:
|
10 |
+
- cron: "0 3 * * *"
|
11 |
# 8 - 7 = 1
|
12 |
|
13 |
jobs:
|
|
|
116 |
name: posttrained.zip
|
117 |
overwrite: "true"
|
118 |
|
119 |
+
- name: Commit changes
|
120 |
+
if: env.match != 'true'
|
121 |
+
run: |
|
122 |
+
git config --local user.email "[email protected]"
|
123 |
+
git config --local user.name "belajarqywok"
|
124 |
+
git add -A
|
125 |
+
git commit -m "Data Extraction, Training, and Modeling"
|
126 |
+
|
127 |
+
- name: Push changes
|
128 |
+
if: env.match != 'true'
|
129 |
+
uses: ad-m/github-push-action@master
|
130 |
+
with:
|
131 |
+
github_token: ${{ secrets.GH_TOKEN }}
|
132 |
+
branch: main
|
133 |
+
|
134 |
model_deployment:
|
135 |
name: Model Deployment
|
136 |
runs-on: ubuntu-latest
|
pipeline_schedule.ctl
CHANGED
@@ -1 +1 @@
|
|
1 |
-
2024-07-
|
|
|
1 |
+
2024-07-27
|