generated from cstate/example
-
-
Notifications
You must be signed in to change notification settings - Fork 5
40 lines (35 loc) · 1.21 KB
/
deploy-page.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Deploy to Github Pages
on:
push:
# In case we want it to build only on changes on certain files
# paths:
# - "site/**"
# - ".github/workflows/deploy-page.yml"
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
# Clones the repository. We also want the submodules, thats where the theme lies.
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
# Download, and sets up HUGO, ready for use in GHActions
- name: Setup Hugo
uses: peaceiris/[email protected]
with:
hugo-version: "0.83.1" # Version taken from https://github.com/cstate/cstate/blob/v4.4/exampleSite/.gitlab-ci.yml#L10
extended: true
# Builds the ./public, and minifies CSS/JS
- name: Build
run: hugo --minify
# Takes the result of ./public, and pushes it to the `gh-pages` branch, and include the CNAME file with the content of `info.linuxserver.io`
- name: Deploy
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./public
cname: info.linuxserver.io