Skip to content

Commit

Permalink
Depend on forked download-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasValvekens committed Dec 17, 2023
1 parent 3c84810 commit e588e30
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Download dist artifacts
uses: actions/download-artifact@v4
uses: MatthiasValvekens/download-artifact@feature/download-name-prefix
with:
name: pyhanko-dist
path: dist/
Expand All @@ -71,7 +71,7 @@ jobs:
- name: Stash coverage report
uses: actions/upload-artifact@v4
with:
name: coverage
name: coverage-${{ strategy.job-index }}
path: "*-coverage.xml"
live-integration-tests:
runs-on: ubuntu-latest
Expand All @@ -86,7 +86,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Download dist artifacts
uses: actions/download-artifact@v4
uses: MatthiasValvekens/download-artifact@feature/download-name-prefix
with:
name: pyhanko-dist
path: dist/
Expand All @@ -111,7 +111,7 @@ jobs:
- name: Stash coverage report
uses: actions/upload-artifact@v4
with:
name: coverage
name: coverage-live-${{ strategy.job-index }}
path: "*-coverage.xml"
smoke-tests:
runs-on: ubuntu-latest
Expand All @@ -123,7 +123,7 @@ jobs:
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
- name: Download dist artifacts
uses: actions/download-artifact@v4
uses: MatthiasValvekens/download-artifact@feature/download-name-prefix
with:
name: pyhanko-dist
path: dist/
Expand All @@ -144,7 +144,7 @@ jobs:
# checkout necessary to ensure the uploaded report contains the correct paths
- uses: actions/checkout@v4
- name: Retrieve coverage reports
uses: actions/download-artifact@v4
uses: MatthiasValvekens/download-artifact@feature/download-name-prefix
with:
name: coverage
path: ./reports/
Expand Down

0 comments on commit e588e30

Please sign in to comment.