quatalog-scraper/.github/workflows/autocompile.yml
3eef8a28f26fb2bcc514e6f1938929a1f931762 96dfbf9a40 Debug
2023-02-06 15:28:22 -05:00

27 lines
534 B
YAML

name: Autocompile
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Compile (make)
run: |
find .
make
- name: Push compiled binary
run: |
git config --global user.name "Quatalog Compiler"
git config --global user.email "github_actions@quatalog.com"
git add CourseOfferingsScraper
git commit -m "Recompile scraper : $(date)"
git push