Skip to content

build(deps): bump actions/checkout from 3 to 4 #14

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #14

Workflow file for this run

name: on-push
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: pre-commit/[email protected]
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 0.97.3
extended: true
- name: Build
run: hugo --gc --minify
- name: Archive artifact
uses: actions/upload-artifact@v3
with:
name: blog
path: public/
- name: Deploy
if: ${{ github.ref == 'refs/heads/main' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: public