Skip to content

Commit dc015a3

Browse files
authored
Create testing.yml
1 parent 9bb99a5 commit dc015a3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/testing.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Update Prod Environment
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
update-environment:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
- name: dbt Cloud Downstream CI Action
15+
uses: dpguthrie/dbt-cloud-git-tag-action@main
16+
with:
17+
dbt_cloud_account_id: ${{ secrets.DBT_CLOUD_ACCOUNT_ID }}
18+
dbt_cloud_project_id: ${{ secrets.DBT_CLOUD_PROJECT_ID }}
19+
dbt_cloud_environment_id: ${{ secrets.DBT_CLOUD_ENVIRONMENT_ID }}
20+
dbt_cloud_service_token: ${{ secrets.DBT_CLOUD_SERVICE_TOKEN }}

0 commit comments

Comments
 (0)