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
Copy file name to clipboardexpand all lines: README.md
+31-3
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,28 @@ Once you've made your working copy of the site repo, from the repo root folder,
59
59
hugo server
60
60
```
61
61
62
+
## Deployment on GitHub pages
63
+
64
+
This repo ships with a [GitHub action] that allows you to deploy your site to [GitHub Pages].
65
+
To manually trigger the deployment, select the [deployment workflow] in the `Actions` section of the GitHub web UI and press the button `Run workflow`.
66
+
To enable automatic deployment on each push to your repo, edit the corresponding [workflow file](.github/workflows/deploy-github-pages.yml) and uncomment the line specifying the branch used for deployment:
67
+
68
+
```yml
69
+
on:
70
+
workflow_dispatch: # enables manual run of workflow via GitHub web UI
71
+
push:
72
+
branches:
73
+
- master # <- Set branch used for deployment here
74
+
```
75
+
76
+
For further details on the deployment setup, please refer to the [deployment] section of the docsy user guide.
77
+
78
+
## Automated link check
79
+
80
+
This repo ships with a [GitHub action] that allows you to check the internal links of your page using the fast [hyperlink] link checker.
81
+
By default, the link check action will be performed on each push to your repo. To see the results of the last workflow run(s), select the [link check workflow] in the `Actions` section of the GitHUB web UI.
82
+
On the same page, you can also disable the workflow if needed. To do so, press the button `…` right beneath the search field that allows you to filter workflow runs.
83
+
62
84
## Running a container locally
63
85
64
86
You can run docsy-example inside a [Docker](https://docs.docker.com/)
@@ -125,9 +147,8 @@ Or you may encounter the following error:
125
147
Error: failed to download modules: binary with name "go" not found
126
148
```
127
149
128
-
This error occurs if you have not installed the `go` programming language on your system.
129
-
See this [section](https://www.docsy.dev/docs/get-started/docsy-as-module/installation-prerequisites/#install-go-language) of the user guide for instructions on how to install `go`.
130
-
150
+
This error occurs if the `go` programming language is not available on your system.
151
+
Go to the [download area] of the Go website, choose the installer for your system architecture and execute it.
0 commit comments