Skip to content

Channel users to Nerves Forum instead of Discord on the /code page #76

Channel users to Nerves Forum instead of Discord on the /code page

Channel users to Nerves Forum instead of Discord on the /code page #76

Workflow file for this run

# https://gohugo.io/hosting-and-deployment/hosting-on-github
name: github pages
on:
push:
branches:
- main # Set a branch to deploy
pull_request:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Read .tool-versions
uses: marocchino/tool-versions-action@v1
id: versions
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: ${{ steps.versions.outputs.nodejs }}
- name: Install dependencies from NPM
run: npm install
- name: Set Hugo version
id: hugo-version
run: |
ver=$(echo "${{ steps.versions.outputs.hugo }}" | tr -d 'extended_')
echo "HUGO_VERSION=${ver}" >> "${GITHUB_OUTPUT}"
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: ${{ steps.hugo-version.outputs.HUGO_VERSION }}
extended: true # For SCSS
- name: Build
run: hugo --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public