From 550037161c05f9d8b1dcdcd8c6ac14a162b08055 Mon Sep 17 00:00:00 2001 From: VersusFacit <67295367+VersusFacit@users.noreply.github.com> Date: Fri, 17 Jan 2025 10:24:32 -0800 Subject: [PATCH] Remove the artifacts related workflow steps --- .github/workflows/integration.yml | 12 ------------ .github/workflows/main.yml | 15 --------------- 2 files changed, 27 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index e6ff5f630..d2558ad0a 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -178,24 +178,12 @@ jobs: DBT_TEST_USER_3: dbt_test_user_3 run: tox -- --ddtrace - - uses: actions/upload-artifact@v3 - if: always() - with: - name: logs - path: ./logs - - name: Get current date if: always() id: date run: | echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts - - uses: actions/upload-artifact@v3 - if: always() - with: - name: integration_results_${{ matrix.python-version }}_${{ matrix.os }}_${{ matrix.adapter }}-${{ steps.date.outputs.date }}.csv - path: integration_results.csv - require-label-comment: runs-on: ubuntu-latest diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d3ca361b8..287fadfa4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -106,12 +106,6 @@ jobs: run: | echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT - - uses: actions/upload-artifact@v3 - if: always() - with: - name: unit_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv - path: unit_results.csv - build: name: build packages @@ -157,10 +151,6 @@ jobs: export is_alpha=0 if [[ "$(ls -lh dist/)" == *"a1"* ]]; then export is_alpha=1; fi echo "is_alpha=$is_alpha" >> $GITHUB_OUTPUT - - uses: actions/upload-artifact@v3 - with: - name: dist - path: dist/ test-build: name: verify packages / python ${{ matrix.python-version }} / ${{ matrix.os }} @@ -193,11 +183,6 @@ jobs: python -m pip install --upgrade wheel python -m pip --version - - uses: actions/download-artifact@v3 - with: - name: dist - path: dist/ - - name: Show distributions run: ls -lh dist/