diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bc71f673f4f..3246dbfa335 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -198,8 +198,9 @@ jobs: dbt --version - name: Install source distributions + # ignore dbt-1.0.0, which intentionally raises an error when installed from source run: | - find ./dist/*.gz -maxdepth 1 -type f | xargs pip install --force-reinstall --find-links=dist/ + find ./dist/dbt-[a-z]*.gz -maxdepth 1 -type f | xargs pip install --force-reinstall --find-links=dist/ - name: Check source distributions run: |