mirror of
https://github.com/FlipsideCrypto/livequery-base.git
synced 2026-02-06 11:16:44 +00:00
* set environment variables conditionally based on dispatch event
abstract target to environment variable
use input variable for python version
* workflow fixes
* Squashed commit of the following:
commit 3c297e75fb
Author: Julius Remigio <14811322+juls858@users.noreply.github.com>
Date: Wed Oct 25 15:08:41 2023 -0700
set environment variables conditionally based on dispatch event (#63)
abstract target to environment variable
use input variable for python version
19 lines
388 B
YAML
19 lines
388 B
YAML
name: dbt_run_dev_refresh
|
|
run-name: dbt_run_dev_refresh
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Runs "at 9:00 UTC" (see https://crontab.guru)
|
|
- cron: '0 9 * * *'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}
|
|
|
|
jobs:
|
|
dev_refresh:
|
|
uses: ./.github/workflows/dbt.yml
|
|
secrets: inherit
|
|
with:
|
|
environment: prod
|
|
command: dbt run-operation run_sp_create_prod_clone |