Skip to content

Commit

Permalink
update artifacts actions as they must all be in sync. Use pattern to …
Browse files Browse the repository at this point in the history
…download Test results artifacts
  • Loading branch information
hahn-kev committed Jul 25, 2024
1 parent e01079d commit 6919afc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
if: github.event_name == 'push' && matrix.os == 'ubuntu-latest'

- name: Publish Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: NugetPackages
path: artifacts/*.nupkg
Expand All @@ -99,9 +99,10 @@ jobs:
if: always()
steps:
- name: Download test results
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: artifacts
pattern: Test results *
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action@8885e273a4343cd7b48eaa72428dea0c3067ea98 # v2.14.0
with:
Expand Down

0 comments on commit 6919afc

Please sign in to comment.