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 d985096 commit 24fddf1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/actions/steps_download/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,12 @@ runs:
run: python -m pip install --upgrade --requirement requirements_test.txt
working-directory: "${{inputs.PkgRootFolder}}"
shell: bash
- name: List files
run: Get-ChildItem -Path .\ -Recurse -Force
working-directory: "${{ runner.temp }}"
shell: pwsh
- name: Unit and Integration Tests
env:
TEMP: "${{ runner.temp }}"
TMP: "${{ runner.temp }}"
TESTRESULTSPATH: "${{ runner.temp }}"
COVRESULTSPATH: "${{ runner.temp }}\\cov.xml"
run: tox --installpkg ${{ runner.workspace }}\${{inputs.ArtifactName}}\* -vv -r -s true
run: tox --installpkg ${{ runner.workspace }}/${{inputs.ArtifactName}}/* -vv -r -s true
shell: bash
working-directory: "${{inputs.PkgRootFolder}}"
7 changes: 6 additions & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,18 @@ jobs:
--self-contained
--output=${{ env.DOCPATH }}
API.md
- name: Prepare HTML for publishing
run: |
mkdir ${{runner.temp}}/doc
mv ${{ env.DOCPATH }} ${{runner.temp}}/doc
shell: bash
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: "${{github.workspace}}/${{ env.DOCPATH }}"
path: "${{runner.temp}}/doc"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1

0 comments on commit 24fddf1

Please sign in to comment.