Skip to content

Commit

Permalink
Exploring runner shell
Browse files Browse the repository at this point in the history
  • Loading branch information
max-pfeiffer committed Oct 6, 2023
1 parent 32fa74f commit e5867ba
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: build-image-coverage-report ${{ matrix.python_version }}-${{ matrix.os_variant }}-${{ matrix.poetry_version }}
name: build-image-coverage-report-${{ matrix.python_version }}-${{ matrix.os_variant }}-${{ matrix.poetry_version }}
path: build_image_coverage_report.xml
if-no-files-found: error
retention-days: 1
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: publish-image-coverage-report ${{ matrix.python_version }}-${{ matrix.os_variant }}-${{ matrix.poetry_version }}
name: publish-image-coverage-report-${{ matrix.python_version }}-${{ matrix.os_variant }}-${{ matrix.poetry_version }}
path: publish_image_coverage_report.xml
if-no-files-found: error
retention-days: 1
Expand All @@ -143,14 +143,15 @@ jobs:
run: |
pwd
ls -sal
echo "$SHELL"
- name: Download coverage reports
uses: actions/download-artifact@v3
with:
name: publish-image-coverage-report
- name: Check file system after upload
run: |
pwd
ls -sal
mv **/*.xml .
ls -sal
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit e5867ba

Please sign in to comment.