Hilbish/.github/workflows/website.yml

52 lines
1.5 KiB
YAML
Raw Permalink Normal View History

2022-12-13 19:14:48 +00:00
name: Build website
on:
2024-05-03 16:47:24 +00:00
push:
branches:
- master
pull_request:
branches:
- master
2022-12-13 19:14:48 +00:00
jobs:
deploy:
runs-on: ubuntu-latest
steps:
2024-05-03 16:47:24 +00:00
- uses: actions/checkout@v4
2022-12-13 19:14:48 +00:00
with:
submodules: true
fetch-depth: 0
- name: Setup Hugo
2024-05-03 16:47:24 +00:00
uses: peaceiris/actions-hugo@v3
2022-12-13 19:14:48 +00:00
with:
2024-05-03 16:47:24 +00:00
hugo-version: '0.111.3'
2022-12-13 19:14:48 +00:00
extended: true
- name: Set branch name
id: branch
2023-07-09 21:08:14 +00:00
run: echo "BRANCH_NAME=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> "$GITHUB_ENV"
- name: Fix base URL
if: env.BRANCH_NAME != 'master' && github.repository_owner == 'Rosettea'
run: sed -i "s%baseURL = 'https://rosettea.github.io/Hilbish/'%baseURL = 'https://rosettea.github.io/Hilbish/versions/${{ env.BRANCH_NAME }}'%" website/config.toml
- name: Build
run: 'cd website && hugo --minify'
- name: Deploy
if: env.BRANCH_NAME == 'master' && github.repository_owner == 'Rosettea'
2024-05-03 16:47:24 +00:00
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./website/public
keep_files: true
2022-12-13 19:14:48 +00:00
- name: Deploy
if: env.BRANCH_NAME != 'master' && github.repository_owner == 'Rosettea'
2024-05-03 16:47:24 +00:00
uses: peaceiris/actions-gh-pages@v4
2022-12-13 19:14:48 +00:00
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./website/public
destination_dir: versions/${{ env.BRANCH_NAME }}
keep_files: true