Skip to content

Commit

Permalink
Fix invalid arguments in GitHub Actions for download of build-scan-da…
Browse files Browse the repository at this point in the history
…ta artifacts
  • Loading branch information
yrodiere committed Oct 25, 2024
1 parent 5eaaff2 commit 62fe772
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,11 @@ jobs:
id: downloadBuildScan
uses: actions/download-artifact@v4
with:
name: build-scan-data-${{ matrix.rdbms }}
pattern: build-scan-data-*
github-token: ${{ github.token }}
repository: ${{ github.repository }}
run-id: ${{ github.event.workflow_run.id }}
path: /tmp/downloaded-build-scan-data/
pattern: build-scan-data-*
# Don't fail the build if there are no matching artifacts
continue-on-error: true
- name: Publish Develocity build scans for previous builds
Expand Down

0 comments on commit 62fe772

Please sign in to comment.