This commit is contained in:
3eef8a28f26fb2bcc514e6f1938929a1f931762 2023-02-09 22:26:21 -05:00
commit a274ca66c5
4 changed files with 32 additions and 5 deletions

View File

@ -8,8 +8,6 @@ jobs:
scrape-data:
name: Scrape data
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout scraping repo
uses: actions/checkout@v3
@ -25,7 +23,7 @@ jobs:
- name: Clone Quatalog data
uses: actions/checkout@v3
with:
repository: quatalog/quatalog-data
repository: quatalog/data
path: quatalog-data
token: ${{ secrets.PUSH_TOKEN }}
@ -43,6 +41,37 @@ jobs:
CURRENT_TERM="$(grep quatalog-data/terms_list.json -e 'current_term' | cut -f4 -d '"')"
rsync -avz "quacs-data/semester_data/$CURRENT_TERM/catalog.json" quatalog-data/catalog.json
- name: List files
run: |
ls -lsaR .
- name: Upload data to artifact
uses: actions/upload-artifact@v3
with:
name: quatalog-data
path: quatalog-data/
# generate-site:
# runs-on: ubuntu-latest
# needs: [scrape-data]
# steps:
# - name: Checkout scraping repo
# uses: actions/checkout@v3
# with:
# path: quatalog-scraping
push-new-data:
name: Push new data to data repo
runs-on: ubuntu-latest
needs: [scrape-data]
steps:
- name: Download data from artifact
uses: actions/download-artifact@v3
with:
name: quatalog-data
path: quatalog-data
- name: Push new data
working-directory: ./quatalog-data
run: |
@ -51,5 +80,3 @@ jobs:
git add terms_offered.json prerequisites.json terms_list.json catalog.json
git commit -m "$(date)" || exit 0
git push

Binary file not shown.

BIN
bin/GenerateHtml Executable file

Binary file not shown.

Binary file not shown.