diff --git a/.github/actions/steps_download/action.yml b/.github/actions/steps_download/action.yml index 75372fa..183ce88 100644 --- a/.github/actions/steps_download/action.yml +++ b/.github/actions/steps_download/action.yml @@ -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}}" \ No newline at end of file diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 979351c..f6f7ae3 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -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