refactor: remove sh dependence in core hilbish code (and add snail library - for shell script) #502
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: Build website | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v[0-9]+.* | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v3 | |
with: | |
hugo-version: '0.111.3' | |
extended: true | |
- name: Set branch name | |
id: branch | |
run: echo "BRANCH_NAME=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/*/}}" >> "$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' | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./website/public | |
keep_files: true | |
- name: Deploy | |
if: env.BRANCH_NAME != 'master' && github.repository_owner == 'Rosettea' | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./website/public | |
destination_dir: versions/${{ env.BRANCH_NAME }} | |
keep_files: true |