fix: set path to ensure compatibility with v1 of the action

See https://github.com/actions/download-artifact#compatibility-between-v1-and-v2v3 for more details.
This commit is contained in:
Jose Diaz-Gonzalez
2022-12-29 01:52:33 -05:00
parent 6e28b9f835
commit 9f1bfb0d06

View File

@@ -60,6 +60,7 @@ jobs:
uses: actions/download-artifact@v3
with:
name: build
path: build
- name: ci-setup
run: ./.github/commands/ci-setup
@@ -98,6 +99,7 @@ jobs:
uses: actions/download-artifact@v3
with:
name: build
path: build
- name: ci-setup
run: ./.github/commands/ci-setup
@@ -127,6 +129,7 @@ jobs:
uses: actions/download-artifact@v3
with:
name: build
path: build
- name: ci-setup
run: ./.github/commands/ci-setup
@@ -161,6 +164,7 @@ jobs:
uses: actions/download-artifact@v3
with:
path: test-results
path: test-results
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2