diff --git a/.github/workflows/deploy-gh-pages.yaml b/.github/workflows/deploy-gh-pages.yaml index 98c2998b..d1335f2e 100644 --- a/.github/workflows/deploy-gh-pages.yaml +++ b/.github/workflows/deploy-gh-pages.yaml @@ -5,6 +5,7 @@ on: push: branches: - main + - chore/setup-pages-deploy workflow_dispatch: permissions: @@ -29,7 +30,7 @@ jobs: - name: Build with mdBook working-directory: docs - run: mdbook build + run: mdbook build && ls -la book/html - name: Upload artifact uses: actions/upload-pages-artifact@v3 @@ -37,13 +38,13 @@ jobs: path: ./docs/book/html # Deployment job - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: build - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 + # deploy: + # environment: + # name: github-pages + # url: ${{ steps.deployment.outputs.page_url }} + # runs-on: ubuntu-latest + # needs: build + # steps: + # - name: Deploy to GitHub Pages + # id: deployment + # uses: actions/deploy-pages@v4