From 61ad039b86d0c9976ef36338b1b40e3d2d5c1425 Mon Sep 17 00:00:00 2001 From: Iisakki Rotko Date: Wed, 28 Aug 2024 12:05:37 +0200 Subject: [PATCH] ci: always upload lock files to artifacts --- .github/workflows/test.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a983f30dd..278e69124 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -159,7 +159,9 @@ jobs: uses: actions/upload-artifact@v4 with: name: test-results-code-quality-python${{ matrix.python-version }} - path: diff-code-quality-python${{ matrix.python-version }}.txt + path: | + diff-code-quality-python${{ matrix.python-version }}.txt + ./**/${{ env.LOCK_FILE_LOCATION }} - name: Upload CI package locks if: steps.install_no_lock.outputs.HAS_DIFF == 'true' || steps.prepare.outputs.LOCKS_EXIST == 'false' @@ -332,6 +334,7 @@ jobs: path: | test-results diff-integration-os${{ matrix.os }}-python${{ matrix.python-version }}-ipywidgets${{ matrix.ipywidgets_major }}.txt + ./**/${{ env.LOCK_FILE_LOCATION }} - name: Upload CI package locks if: steps.install_no_lock.outputs.HAS_DIFF == 'true' || steps.prepare.outputs.LOCKS_EXIST == 'false' @@ -438,6 +441,7 @@ jobs: path: | test-results diff-integration-vue3-os${{ matrix.os }}-ipywidgets${{ matrix.ipywidgets_major }}.txt + ./**/${{ env.LOCK_FILE_LOCATION }} - name: Upload CI package locks if: steps.install_no_lock.outputs.HAS_DIFF == 'true' || steps.prepare.outputs.LOCKS_EXIST == 'false' @@ -531,7 +535,9 @@ jobs: uses: actions/upload-artifact@v4 with: name: test-results-unit-os${{ matrix.os }}-python${{ matrix.python }}-ipywidgets${{ matrix.ipywidgets }} - path: diff-unit-os${{ matrix.os }}-python${{ matrix.python }}-ipywidgets${{ matrix.ipywidgets }}.txt + path: | + diff-unit-os${{ matrix.os }}-python${{ matrix.python }}-ipywidgets${{ matrix.ipywidgets }}.txt + ./**/${{ env.LOCK_FILE_LOCATION }} - name: Upload CI package locks if: steps.install_no_lock.outputs.HAS_DIFF == 'true' || steps.prepare.outputs.LOCKS_EXIST == 'false'