Skip to content

Update JamesIves/github-pages-deploy-action action to v4.7.1 (#42) #91

Update JamesIves/github-pages-deploy-action action to v4.7.1 (#42)

Update JamesIves/github-pages-deploy-action action to v4.7.1 (#42) #91

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@dc18a3c6b46d56484cb63f291becd7ed4f0269b9 # v4.7.1
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