mirror of
https://github.com/quatalog/quatalog.git
synced 2024-11-28 17:52:55 +00:00
Merge branch 'main' of https://github.com/quatalog/quatalog-scraping
This commit is contained in:
commit
a274ca66c5
37
.github/workflows/scraper.yml
vendored
37
.github/workflows/scraper.yml
vendored
|
@ -8,8 +8,6 @@ jobs:
|
||||||
scrape-data:
|
scrape-data:
|
||||||
name: Scrape data
|
name: Scrape data
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout scraping repo
|
- name: Checkout scraping repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
@ -25,7 +23,7 @@ jobs:
|
||||||
- name: Clone Quatalog data
|
- name: Clone Quatalog data
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: quatalog/quatalog-data
|
repository: quatalog/data
|
||||||
path: quatalog-data
|
path: quatalog-data
|
||||||
token: ${{ secrets.PUSH_TOKEN }}
|
token: ${{ secrets.PUSH_TOKEN }}
|
||||||
|
|
||||||
|
@ -43,6 +41,37 @@ jobs:
|
||||||
CURRENT_TERM="$(grep quatalog-data/terms_list.json -e 'current_term' | cut -f4 -d '"')"
|
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
|
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
|
- name: Push new data
|
||||||
working-directory: ./quatalog-data
|
working-directory: ./quatalog-data
|
||||||
run: |
|
run: |
|
||||||
|
@ -51,5 +80,3 @@ jobs:
|
||||||
git add terms_offered.json prerequisites.json terms_list.json catalog.json
|
git add terms_offered.json prerequisites.json terms_list.json catalog.json
|
||||||
git commit -m "$(date)" || exit 0
|
git commit -m "$(date)" || exit 0
|
||||||
git push
|
git push
|
||||||
|
|
||||||
|
|
||||||
|
|
Binary file not shown.
BIN
bin/GenerateHtml
Executable file
BIN
bin/GenerateHtml
Executable file
Binary file not shown.
BIN
bin/json.o
BIN
bin/json.o
Binary file not shown.
Loading…
Reference in a new issue