Skip to content

Commit

Permalink
chore(deps): fix pipeline configuration issue
Browse files Browse the repository at this point in the history
  • Loading branch information
portovep committed Apr 9, 2024
1 parent db75ed0 commit 9cdb7d0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Test
runs-on: ubuntu-latest
container:
image: ghcr.io/dbt-labs/dbt-postgres:${{ env.DBT_VERSION }}
image: ghcr.io/dbt-labs/dbt-postgres:$DBT_VERSION
env:
POSTGRES_HOST: ${{ vars.POSTGRES_HOST }}
POSTGRES_USER: ${{ vars.POSTGRES_USER }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
environment: ${{ inputs.environment-name }}
container:
image: ghcr.io/dbt-labs/dbt-postgres:${{ env.DBT_VERSION }}
image: ghcr.io/dbt-labs/dbt-postgres:$DBT_VERSION
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
environment: ${{ inputs.environment-name }}
container:
image: ghcr.io/dbt-labs/dbt-postgres:${{ env.DBT_VERSION }}
image: ghcr.io/dbt-labs/dbt-postgres:$DBT_VERSION
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
environment: ${{ inputs.environment-name }}
container:
image: ghcr.io/dbt-labs/dbt-postgres:${{ env.DBT_VERSION }}
image: ghcr.io/dbt-labs/dbt-postgres:$DBT_VERSION
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
environment: ${{ inputs.environment-name }}
container:
image: ghcr.io/dbt-labs/dbt-postgres:${{ env.DBT_VERSION }}
image: ghcr.io/dbt-labs/dbt-postgres:$DBT_VERSION
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down

0 comments on commit 9cdb7d0

Please sign in to comment.