diff options
| author | Paul Donald | 2026-02-16 02:22:54 +0000 |
|---|---|---|
| committer | Paul Donald | 2026-02-16 02:22:54 +0000 |
| commit | 74f5bbdc116f8a1a46d0040f762e3182523f5875 (patch) | |
| tree | f3c361ad75198ec6e53a8a6e04c046b3b8d64137 | |
| parent | d7eb5535967a1a83fbae4a3e39c1534c00ff674a (diff) | |
| download | luci-74f5bbdc116f8a1a46d0040f762e3182523f5875.tar.gz | |
github: re-work github pages deploy
follow-up to 90836a0fac132eb8bf71b87725153f45f45babaa
until a proper 'github-pages' environment is configured,
go back to the older working method.
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
| -rw-r--r-- | .github/workflows/jsdoc.yml | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/.github/workflows/jsdoc.yml b/.github/workflows/jsdoc.yml index 690fbe5e9b..42a2446681 100644 --- a/.github/workflows/jsdoc.yml +++ b/.github/workflows/jsdoc.yml @@ -15,12 +15,12 @@ jobs: build: if: endsWith( github.repository, 'luci' ) runs-on: ubuntu-latest - permissions: - pages: write - id-token: write - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} + # permissions: + # pages: write + # id-token: write + # environment: + # name: github-pages + # url: ${{ steps.deployment.outputs.page_url }} steps: - name: Checkout code uses: actions/checkout@v6 @@ -37,13 +37,21 @@ jobs: name: docs path: ./docs/ + - name: Deploy + uses: peaceiris/actions-gh-pages@v4 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./docs/ + enable_jekyll: false + # Deploy step depends on the repo settings->pages config: choose Branch # "gh-pages", path "/". Deploy creates a commit on the gh-pages branch, # with the content of built docs folder "/docs" in repo root "/". # This is the "luci" repo, so the result of gh-pages is deployed to # "<githubid>.github.io/luci" - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 - with: - artifact_name: docs + + # - name: Deploy to GitHub Pages + # id: deployment + # uses: actions/deploy-pages@v4 + # with: + # artifact_name: docs |