You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
similarly to #74, I also tried creating a GitHub action that would deploy the generated documentation to GitHub pages. My workflow looks like so:
name: Deploy documentation to GitHub pageson:
# Runs on pushes targeting the default branchpush:
branches: ["main"]# Allows you to run this workflow manually from the Actions tabworkflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pagespermissions:
contents: readpages: writeid-token: write# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.concurrency:
group: "pages"cancel-in-progress: falsejobs:
docs:
runs-on: ubuntu-latestenvironment:
name: github-pagesurl: ${{ steps.deployment.outputs.page_url }}steps:
- name: Checkout the repo
- uses: actions/checkout@v4
- name: Generate documentation with gopagesuses: actions/setup-go@v5with:
go-version: '1.23'run: go run github.com/johnstarich/go/gopages@latest \-brand-title '<repo>' \-brand-description '<repo>' \-internal
- name: Upload the generated pagesuses: actions/upload-pages-artifact@v3with:
path: ./dist
- name: Deploy to GitHub Pagesid: deploymentuses: actions/deploy-pages@v4
When running this action, I get the following error:
Generating godoc static pages for module... github.com/devrev/airdrop-common
pipe: pipe: pipe: Error generating page: [404]
...
<a bunch of html>
I have no idea what went wrong, since running the command works perfectly locally. Is there anything I can do to fix this?
The text was updated successfully, but these errors were encountered:
Hi (again),
similarly to #74, I also tried creating a GitHub action that would deploy the generated documentation to GitHub pages. My workflow looks like so:
When running this action, I get the following error:
I have no idea what went wrong, since running the command works perfectly locally. Is there anything I can do to fix this?
The text was updated successfully, but these errors were encountered: