Skip to content

Commit

Permalink
Fix breaking changes with artifact actions
Browse files Browse the repository at this point in the history
  • Loading branch information
javierjulio committed Dec 24, 2023
1 parent 14a2ced commit 63e77fd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
mv coverage/coverage.xml coverage/coverage-ruby-${{ matrix.ruby }}-${{ matrix.deps }}.xml
- uses: actions/upload-artifact@v4
with:
name: coverage
name: coverage-ruby-${{ matrix.ruby }}-${{ matrix.deps }}

Check failure on line 50 in .github/workflows/ci.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yaml#L50

property "deps" is not defined in object type {rails: string; ruby: {name: string; value: number}} [expression]
Raw output
.github/workflows/ci.yaml:50:54: property "deps" is not defined in object type {rails: string; ruby: {name: string; value: number}} [expression]
path: coverage
if-no-files-found: error

Expand All @@ -60,8 +60,9 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: coverage
pattern: coverage-ruby-*
path: coverage
merge-multiple: true
- uses: codecov/codecov-action@v3
with:
directory: coverage
Expand Down

0 comments on commit 63e77fd

Please sign in to comment.