execute-warehouse-image #196
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: execute-warehouse-image | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 12 * * *' | |
jobs: | |
dbt-run: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/jarvusinnovations/transit-data-analytics-demo/warehouse:latest | |
steps: | |
- run: | | |
echo "$BOT_GCP_SERVICE_ACCOUNT" > /tmp/keyfile | |
BIGQUERY_SERVICE_ACCOUNT=/tmp/keyfile dbt run-operation stage_external_sources --profiles-dir . --target prod_service_account --vars "ext_full_refresh: true" | |
BIGQUERY_SERVICE_ACCOUNT=/tmp/keyfile dbt run --profiles-dir . --target prod_service_account | |
working-directory: /app | |
env: | |
BOT_GCP_SERVICE_ACCOUNT: ${{ secrets.BOT_GCP_SERVICE_ACCOUNT }} | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: dbt.log | |
path: /app/logs/dbt.log | |
# dbt-test: |