Bump actions/checkout from 4.1.2 to 4.1.3 #115
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: github pages | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
with: | |
submodules: recursive # Fetch Hugo themes (true OR recursive) | |
# fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- name: Deploy | |
uses: peaceiris/[email protected] | |
if: github.ref == 'refs/heads/master' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# force_orphan: true | |
publish_dir: . |