Skip to content

Commit

Permalink
ci: test to handle git lfs on GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-freling committed Dec 17, 2023
1 parent f6f5de2 commit 02a2f31
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,24 @@ name: github pages
on:
push:
branches:
- main # Set a branch to deploy
- main # Set a branch to deploy

jobs:
deploy:
runs-on: ubuntu-20.04
# https://github.com/actions/runner-images
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
# https://github.com/orgs/community/discussions/50337#discussioncomment-5349819
lfs: true

- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
hugo-version: "latest"
extended: true

- name: Build
Expand Down
2 changes: 1 addition & 1 deletion content/docs/blender.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ draft: false
---

# Table of contents
- [Gradient color](/posts/2023/12/16/blender-gradient-color/)
- [Gradient color](/posts/2023/12/16/blender-animate-a-gradient-material/)


# Old contents
Expand Down

0 comments on commit 02a2f31

Please sign in to comment.