quatalog-scraper/.github/workflows/autocompile.yml
3eef8a28f26fb2bcc514e6f1938929a1f931762 4e1e916c40 Debug
2023-02-06 15:31:02 -05:00

25 lines
509 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: 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