Skip to content

Commit

Permalink
ci: always upload lock files to artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
iisakkirotko committed Aug 29, 2024
1 parent 199dcf1 commit 61ad039
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit 61ad039

Please sign in to comment.