Update models to new history safety db, maintain backwards compatibility #34
Workflow file for this run
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
name: deploy-to-gcp | |
on: | |
push: | |
# branches: | |
# - main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
env: | |
PIP_REQUIRE_VIRTUALENV: true | |
permissions: | |
contents: read | |
id-token: write | |
actions: read | |
pages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup dbt | |
uses: ./.github/actions/setup_dbt | |
- uses: google-github-actions/auth@v2 | |
with: | |
workload_identity_provider: ${{ secrets.TW_GCP_WORKLOAD_IDENTITY_PROVIDER }} | |
service_account: ${{ secrets.TW_GCP_SERVICE_ACCOUNT }} | |
- uses: google-github-actions/setup-gcloud@v2 | |
with: | |
version: '>= 363.0.0' | |
- name: ensure prod dataset exists | |
run: | | |
source .venv/bin/activate | |
source .envs/prod/.env | |
dbt run-operation ensure_target_dataset_exists | |
bq update --source .envs/prod/dataset_acl.json "${DBT_PROJECT}:${DBT_DATASET}" | |
- name: load prod safety db | |
run: | | |
source .venv/bin/activate | |
source .envs/prod/.env | |
python etl/safety_db/load_missing_partitions.py | |
- name: dbt prod build | |
uses: ./.github/actions/dbt_build | |
with: | |
env: prod | |
- name: dbt prod contracts | |
uses: ./.github/actions/dbt_contract_test | |
with: | |
env: prod | |
- name: upload prod pages | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: target | |
- name: deploy prod pages | |
uses: actions/deploy-pages@v4 | |