-
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.
Merge pull request #30 from datamade/feature/run-rescrape
Add rescrape action
- Loading branch information
Showing
2 changed files
with
122 additions
and
10 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: Rescrape cases | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 21 * * *' | ||
|
||
jobs: | ||
scrape: | ||
name: Re-scrape cases | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Set current date as env variable | ||
run: echo "BEGIN_RESCRAPE_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: Run scrape | ||
run: | | ||
echo $BEGIN_COURTS_RUN | ||
make -f Makefile.update update_db | ||
- 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 \ | ||
--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