Skip to content

Commit

Permalink
automatic update script
Browse files Browse the repository at this point in the history
  • Loading branch information
davidvlaminck committed Jun 11, 2024
1 parent 8ab2621 commit e7d3a63
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/auto_update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Create release
run-name: Automatic release
on:
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest
concurrency: release
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: python3 -m automatic_update.py
working-directory: ./model_update
- name: Commit files
working-directory: .
run: |
git pull
git config user.name github-actions
git config user.email github-actions@github.com
git commit -m "auto updated class model"
git push

0 comments on commit e7d3a63

Please sign in to comment.