1313 default : site
1414
1515env :
16- logo : " https://raw.githubusercontent.com/smashedr/repo-images /refs/heads/master/vultr-python/logo128.png "
16+ logo : " https://raw.githubusercontent.com/cssnr/vultr-python /refs/heads/master/.github/assets/logo.svg "
1717 link : ${{ github.event.repository.html_url }}
1818
1919jobs :
2727
2828 steps :
2929 - name : " Checkout"
30- uses : actions/checkout@v5
30+ uses : actions/checkout@v6
3131
3232 - name : " Debug CTX github"
3333 continue-on-error : true
@@ -53,29 +53,29 @@ jobs:
5353 python -m pip install -U pdoc
5454 python -m pip install -e .
5555 python -m pdoc -t docs -o "${{ inputs.path }}" \
56- --favicon "${{ env.logo }}" \
5756 --logo "${{ env.logo }}" \
5857 --logo-link "${{ env.link }}" \
5958 vultr
6059
61- - name : " Update Permissions"
60+ - name : " Fix Docs"
61+ working-directory : ${{ inputs.path }}
6262 run : |
63- chmod -c -R +rX "${{ inputs.path }}" | while read name; do
64- echo "::notice::Fixed invalid file permissions: ${name}"
65- done
63+ mv -f vultr.html index.html
64+
65+ # - name: "Update Permissions"
66+ # run: |
67+ # chmod -c -R +rX "${{ inputs.path }}" | while read name; do
68+ # echo "::notice::Fixed invalid file permissions: ${name}"
69+ # done
6670
6771 - name : " List Artifacts"
68- env :
69- path : ${{ inputs.path }}
72+ working-directory : ${{ inputs.path }}
7073 run : |
71- echo "::group::ls"
72- ls -lAhR "${path}"
73- echo "::endgroup::"
74- echo "::group::tree"
75- tree "${path}"
74+ results="$(tree . || ls -lAhR .)"
75+ echo "::group::results"
76+ echo "${results}"
7677 echo "::endgroup::"
77- results="$(tree "${path}")"
78- markdown='Artifacts:\n```text\n'"${results}"'\n```'
78+ markdown='Artifacts: `${{ inputs.path }}`\n```text\n'"${results}"'\n```'
7979 echo -e "${markdown}" >> $GITHUB_STEP_SUMMARY
8080
8181 - name : " Upload Pages Artifact"
0 commit comments