Skip to content

move back tags to the top menu #52

move back tags to the top menu

move back tags to the top menu #52

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main # Set a branch name to trigger deployment
workflow_dispatch: # Enable manual call of this action
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: 🛒 Checkout
uses: actions/checkout@v4
with:
submodules: recursive # Fetch Hugo theme as well
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: ✨ Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: 'latest'
extended: true
- name: 🛠️ Build
run: hugo --minify
- name: 🚀 Deploy
uses: peaceiris/actions-gh-pages@v4
# If you're changing the branch from main,
# also change the `main` in `refs/heads/main`
# below accordingly.
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public