Update Database #1179
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
# This is a basic workflow to help you get started with Actions | |
name: Update Database | |
concurrency: | |
group: database-build | |
# Controls when the action will run. | |
on: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '15 4 * * *' | |
push: | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- uses: shogo82148/actions-setup-perl@v1 | |
- name: install requirements | |
run: | | |
pip install -r requirements.txt | |
cpanm https://github.com/jsnell/json-to-multicsv/archive/refs/heads/master.zip | |
# Runs a single command using the runners shell | |
- name: build database | |
run: | | |
make lm20.db | |
- name: setup asset | |
run: | | |
zip lm20.db.zip lm20.db | |
- name: release | |
if: github.ref == 'refs/heads/main' | |
uses: WebFreak001/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # automatically provided by github actions | |
with: | |
upload_url: https://uploads.github.com/repos/labordata/lm20/releases/53122891/assets{?name,label} | |
release_id: 53122891 | |
asset_path: ./lm20.db.zip # path to archive to upload | |
asset_name: lm20.db.zip # name to upload the release as, use $$ to insert date (YYYYMMDD) and 6 letter commit hash | |
asset_content_type: application/zip # required by GitHub API | |
max_releases: 7 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted | |
- name: seven days of releases | |
uses: fgregg/deploy-nightly@master | |
with: | |
upload_url: https://uploads.github.com/repos/labordata/lm20/releases/53122891/assets{?name,label} | |
release_id: 53122891 | |
asset_path: ./lm20.db.zip # path to archive to upload | |
asset_name: lm20-db-nightly-$$.zip # name to upload the release as, use $$ to insert date (YYYYMMDD) and 6 letter commit hash | |
asset_content_type: application/zip # required by GitHub API | |
max_releases: 7 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted | |
ignore_hash: true | |
- name: seven days of scraped data | |
uses: fgregg/deploy-nightly@master | |
with: | |
upload_url: https://uploads.github.com/repos/labordata/lm20/releases/53122891/assets{?name,label} | |
release_id: 53122891 | |
asset_path: ./filing.jl # path to archive to upload | |
asset_name: filing-nightly-$$.jl # name to upload the release as, use $$ to insert date (YYYYMMDD) and 6 letter commit hash | |
asset_content_type: application/ld+json # required by GitHub API | |
max_releases: 7 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted | |
ignore_hash: true |