mirror of
https://github.com/quatalog/quatalog.git
synced 2024-11-08 08:04:24 +00:00
25 lines
509 B
YAML
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
|