deploy-to-gcp #328
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 | |
paths-ignore: | |
- 'docs/**' | |
schedule: | |
- cron: '0 4 * * *' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
env: | |
PIP_REQUIRE_VIRTUALENV: true | |
DBT_PYPI_EARLIEST_DOWNLOAD_DATE: ${{ vars.DBT_PYPI_EARLIEST_DOWNLOAD_DATE }} | |
DBT_MAX_GIGABYTES_BILLED: ${{ vars.DBT_MAX_GIGABYTES_BILLED }} | |
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.GCP_WORKLOAD_IDENTITY_PROVIDER }} | |
service_account: ${{ secrets.GCP_SERVICE_ACCOUNT }} | |
- uses: google-github-actions/setup-gcloud@v2 | |
with: | |
version: '>= 363.0.0' | |
- name: ensure prod dataset exists | |
uses: ./.github/actions/dbt_command | |
with: | |
env: prod | |
command: dbt run-operation ensure_datasets | |
- name: load prod safety db | |
run: | | |
source .venv/bin/activate | |
source .envs/prod/.env | |
python etl/safety_db/load_missing_partitions.py --dataset ${DBT_DATASET}_internal | |
- name: dbt prod build | |
uses: ./.github/actions/dbt_build | |
with: | |
env: prod | |
- name: dbt prod cleanup | |
uses: ./.github/actions/dbt_command | |
with: | |
env: prod | |
command: "dbt run-operation cleanup --args '{dry_run: False}'" | |
- 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 | |