Skip to content

Merge branch 'main' of https://github.com/OpenMediaStation/website #6

Merge branch 'main' of https://github.com/OpenMediaStation/website

Merge branch 'main' of https://github.com/OpenMediaStation/website #6

Workflow file for this run

name: Deploy Hugo Site to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
- name: Build Hugo Site
run: hugo --minify # Use `hugo --minify` for production build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public