Skip to content

Update actions/checkout action to v4.2.2 (#40) #89

Update actions/checkout action to v4.2.2 (#40)

Update actions/checkout action to v4.2.2 (#40) #89

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
schedule:
- cron: '0 0 1 1 *'
repository_dispatch:
types: [build-and-deploy]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: recursive # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@16361eb4acea8698b220b76c0d4e84e1fd22c61d # v2.6.0
with:
hugo-version: 'latest'
- name: Build
run: hugo --minify
- name: Copy CNAME and robots.txt
run: cp CNAME robots.txt public
# Deploy site
- name: Deploy
uses: JamesIves/github-pages-deploy-action@881db5376404c5c8d621010bcbec0310b58d5e29 # v4.6.8
with:
token: ${{ secrets.DEPLOY_TOKEN }}
git-config-email: ${{ secrets.GIT_CONFIG_EMAIL }}
git-config-name: ${{ secrets.GIT_CONFIG_NAME }}
branch: github-pages
folder: public
repository-name: michael-valdron/michael-valdron.github.io
clean: true