Skip to content

Commit

Permalink
Test expression
Browse files Browse the repository at this point in the history
  • Loading branch information
CedricLeong committed Jun 21, 2024
1 parent e09ea9a commit 57960bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ runs:
shell: bash
run: nix profile install github:CedricLeong/dbt-action-nix
- id: install-snowflake
if: ${{ inputs.dbt-snowflake }}
if: ${{ inputs.dbt-snowflake != false}}
shell: bash
run: nix profile install github:CedricLeong/dbt-action-nix/dbt-snowflake
- id: install-postgres
if: ${{ inputs.dbt-postgres }}
if: ${{ inputs.dbt-postgres != false}}
shell: bash
run: nix profile install github:CedricLeong/dbt-action-nix/dbt-postgres
- id: install-bigquery
if: ${{ inputs.dbt-bigquery }}
if: ${{ inputs.dbt-bigquery != false}}
shell: bash
run: nix profile install github:CedricLeong/dbt-action-nix/dbt-bigquery
- id: install-redshift
if: ${{ inputs.dbt-redshift }}
if: ${{ inputs.dbt-redshift != false}}
shell: bash
run: nix profile install github:CedricLeong/dbt-aciton-nix/dbt-redshift

0 comments on commit 57960bc

Please sign in to comment.