-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
0 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,20 +38,6 @@ jobs: | |
run: | | ||
python model_training.py | ||
- name: Pull the latest changes from the remote repository | ||
run: | | ||
git pull origin main # Pull the latest changes from the main branch | ||
- name: Commit and Push Model Files | ||
run: | | ||
git config --global user.name "GitHub Actions" | ||
git config --global user.email "[email protected]" | ||
git add model/ processor/ | ||
git commit -m "Add trained model and processor files" | ||
git push origin main | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
validate_model: | ||
needs: train_model | ||
runs-on: ubuntu-latest | ||
|