diff --git a/.github/workflows/dbt_base.yml b/.github/workflows/dbt_base.yml index cf68d5650..5e65c2cc5 100644 --- a/.github/workflows/dbt_base.yml +++ b/.github/workflows/dbt_base.yml @@ -35,7 +35,8 @@ jobs: name: duckdb path: jaffle_shop.duckdb - - uses: actions/upload-artifact@v4 + - name: Upload DBT Artifacts + uses: actions/upload-artifact@v4 with: name: target path: target/ diff --git a/.github/workflows/recce_ci.yml b/.github/workflows/recce_ci.yml index 74ee87580..62d4b6df6 100644 --- a/.github/workflows/recce_ci.yml +++ b/.github/workflows/recce_ci.yml @@ -20,8 +20,6 @@ jobs: - name: Install dependencies run: | pip install -r requirements.txt - - name: Install Recce - run: | pip install recce - name: Prepare dbt Base environment run: | @@ -48,7 +46,13 @@ jobs: run: | recce run --github-pull-request-url ${{ github.event.pull_request.html_url }} - - name: Archive Recce State File + - name: Upload DBT Artifacts + uses: actions/upload-artifact@v4 + with: + name: target + path: target/ + + - name: Upload Recce State File uses: actions/upload-artifact@v4 id: recce-artifact-uploader with: @@ -91,3 +95,4 @@ jobs: uses: thollander/actions-comment-pull-request@v2 with: filePath: recce_summary.md + comment_tag: recce