Skip to content

Commit

Permalink
Merge pull request #16 from sdf-labs/elias/fixNoSave
Browse files Browse the repository at this point in the history
Removed deprecated `--no-save` flag in the github action
  • Loading branch information
eliasdefaria authored Oct 23, 2024
2 parents cf93534 + 6bbec24 commit 6c1ff0d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: actions/checkout@v4

- name: Run DBT commands
uses: mwhitaker/dbt-action@master
uses: mwhitaker/dbt-action@v1.7.3
env:
DBT_TARGET: dev
SNOWFLAKE_ACCOUNT_ID: ${{ secrets.SNOWFLAKE_ACCOUNT_ID }}
Expand Down
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ fi
if [[ -n $input_is_dbt ]]; then
echo "::group::Setting up dbt"
if [[ -z $dbt_profiles_dir ]]; then
sdf dbt refresh --no-save
sdf dbt refresh
else
sdf dbt refresh --profiles-dir $dbt_profiles_dir --no-save
sdf dbt refresh --profiles-dir $dbt_profiles_dir
fi
check_exit_status $? ""
echo "::endgroup::"
Expand Down

0 comments on commit 6c1ff0d

Please sign in to comment.