Skip to content

Add SimpleValueJqwikPlugin for beginners (#980) #115

Add SimpleValueJqwikPlugin for beginners (#980)

Add SimpleValueJqwikPlugin for beginners (#980) #115

Workflow file for this run

name: github page
on:
push:
branches: [ main ]
paths:
- 'docs/**'
jobs:
deploy:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: fetch Hugo
uses: actions/checkout@v2
with:
submodules: recursive # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
ref: main
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Build
working-directory: docs
run: |
npm install postcss postcss-cli autoprefixer
hugo --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/public