Sc 23170 #1342
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Docs | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
deploy: | |
name: Hugo | |
runs-on: ubuntu-latest | |
env: | |
GOPATH: ${{ github.workspace }}/go | |
defaults: | |
run: | |
working-directory: ${{ env.GOPATH }}/src/github.com/rotationalio/ensign/docs | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
path: ${{ env.GOPATH }}/src/github.com/rotationalio/ensign | |
submodules: true # Fetch Hugo themes | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: '0.110.0' | |
extended: true | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x.x" | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
- name: Install NPM Dependencies | |
run: npm install | |
- name: Update Hugo Mod | |
run: hugo mod clean && hugo mod get ./... && hugo mod tidy | |
- name: Build | |
run: hugo --gc --minify --templateMetrics --templateMetricsHints --verbose --verboseLog --buildDrafts --buildExpired --buildFuture --forceSyncStatic | |
- name: Publish | |
if: github.event_name != 'pull_request' | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: ${{ env.GOPATH }}/src/github.com/rotationalio/ensign/docs/public | |
cname: ensign.rotational.dev |