-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate court call scrape into its own action
- Loading branch information
msj
committed
Mar 15, 2024
1 parent
361e766
commit a5675f9
Showing
2 changed files
with
116 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
name: Court call scrape | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '15 10 * * *' | ||
|
||
jobs: | ||
scrape: | ||
name: Scrape court calls | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Set current date as env variable | ||
run: echo "BEGIN_COURTS_RUN=$(date +'%s')" >> $GITHUB_ENV | ||
- uses: actions/checkout@v3 | ||
- name: upgrade sqlite3 | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install sqlite3 | ||
- name: Install requirements | ||
run: | | ||
pip install -U pyopenssl cryptography | ||
pip install -r requirements.txt | ||
- name: Download latest database zip | ||
uses: robinraju/release-downloader@v1.8 | ||
with: | ||
latest: true | ||
tag: "nightly" | ||
fileName: "*.db.zip" | ||
|
||
- name: Decrypt database | ||
run: | | ||
unzip -P '${{ secrets.CASE_DB_PW }}' cases.db.zip && rm cases.db.zip | ||
- name: Scrape court calls | ||
run: | | ||
make -f Makefile.courtcalls all | ||
- name: Setup database for upload | ||
run: | | ||
zip -P '${{ secrets.CASE_DB_PW }}' cases.db.zip cases.db | ||
- name: Upload new release | ||
uses: WebFreak001/deploy-nightly@v3.0.0 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: https://uploads.github.com/repos/datamade/court-scrapers/releases/131985702/assets{?name,label} | ||
release_id: 131985702 | ||
asset_path: ./cases.db.zip | ||
asset_name: cases.db.zip | ||
asset_content_type: application/zip # required by GitHub API | ||
max_releases: 7 | ||
|
||
- name: Keepalive | ||
uses: gautamkrishnar/keepalive-workflow@v1 | ||
|
||
deploy: | ||
name: Deploy to Heroku | ||
needs: scrape | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
HEROKU_ORGANIZATION: ${{ secrets.HEROKU_ORG }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install requirements | ||
run: pip install -r requirements.txt | ||
|
||
- name: Download latest database zip | ||
uses: robinraju/release-downloader@v1.8 | ||
with: | ||
latest: true | ||
tag: "nightly" | ||
fileName: "*.db.zip" | ||
|
||
- name: Decrypt database | ||
run: | | ||
unzip -P '${{ secrets.CASE_DB_PW }}' cases.db.zip | ||
- name: Install heroku-builds plugin | ||
run: | | ||
heroku plugins:install heroku-builds | ||
- name: Login to Heroku CLI | ||
uses: akhileshns/heroku-deploy@v3.12.14 | ||
with: | ||
heroku_api_key: ${{ secrets.HEROKU_API_KEY }} | ||
heroku_app_name: "" | ||
heroku_email: ${{ secrets.HEROKU_EMAIL }} | ||
justlogin: true | ||
|
||
- name: Install Datasette plugins | ||
run: | | ||
datasette install datasette-auth-passwords datasette-auth-tokens | ||
- name: Get hashed Datasette password | ||
run: | | ||
# Store hash as an environment variable | ||
hash=$(echo '${{ secrets.DATASETTE_INSTANCE_PW }}' \ | ||
| datasette hash-password --no-confirm); \ | ||
echo "hash=$hash" >> $GITHUB_ENV | ||
- name: Deploy Datasette instance to Heroku | ||
run: | | ||
datasette publish heroku cases.db \ | ||
-n court-scraper \ | ||
-m metadata.json \ | ||
--setting sql_time_limit_ms 60000 \ | ||
--install datasette-auth-passwords \ | ||
--plugin-secret datasette-auth-passwords root_password_hash '${{ env.hash }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters