Skip to content

Commit

Permalink
move env file
Browse files Browse the repository at this point in the history
  • Loading branch information
emmyoop committed Jun 28, 2024
1 parent ac4803e commit 48e96eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:
run: |
if [ -z "${{ inputs.adapter }}" ]; then
# github adds a pip freeze and a new line we need to strip out
tox_adapters=$(tox -e list_supported_adapters | grep -v "python -m pip freeze --all" | awk -F'> ' '{print $2}' | sed 's/echo //' | tr -d '\n')
echo $tox_adapters
echo "test_adapters=$tox_adapters" >> $GITHUB_OUTPUT
source supported_adapters.env
echo $SUPPORTED_ADAPTERS
echo "test_adapters=$SUPPORTED_ADAPTERS" >> $GITHUB_OUTPUT
else
echo "test_adapters=${{ inputs.adapter }}" >> $GITHUB_OUTPUT
fi
Expand Down Expand Up @@ -124,4 +124,4 @@ jobs:
# bigquery
BIGQUERY_PROJECT: ${{ vars.BIGQUERY_PROJECT }}
DBT_ENV_SECRET_BIGQUERY_KEYFILE_JSON: ${{ secrets.BIGQUERY_SERVICE_ACCOUNT_JSON }}
BIGQUERY_SCHEMA: "dbt_utils_integration_tests_bigquery"
BIGQUERY_SCHEMA: "dbt_utils_integration_tests_bigquery"
File renamed without changes.

0 comments on commit 48e96eb

Please sign in to comment.