Skip to content

Commit

Permalink
Fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixS90 committed Jun 5, 2024
1 parent 1b5f149 commit d985096
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/steps_download/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
uses: actions/[email protected]
with:
name: "${{inputs.ArtifactName}}"
path: "${{runner.temp}}/${{inputs.ArtifactName}}"
path: "${{runner.workspace}}/${{inputs.ArtifactName}}"
- name: Use Python ${{inputs.PyVersionLatest}}
uses: actions/[email protected]
with:
Expand All @@ -33,6 +33,6 @@ runs:
TMP: "${{ runner.temp }}"
TESTRESULTSPATH: "${{ runner.temp }}"
COVRESULTSPATH: "${{ runner.temp }}\\cov.xml"
run: tox --installpkg ${{ runner.temp }}/${{inputs.ArtifactName}}/* -vv -r -s true
run: tox --installpkg ${{ runner.workspace }}\${{inputs.ArtifactName}}\* -vv -r -s true
shell: bash
working-directory: "${{inputs.PkgRootFolder}}"

0 comments on commit d985096

Please sign in to comment.