quatalog-scraper/.github/workflows/autocompile.yml
3eef8a28f26fb2bcc514e6f1938929a1f931762 9661f9d06c Update workflow
2023-02-06 16:42:41 -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: |
cd bin
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