Skip to content

Commit

Permalink
49-FixReleaseFailure (#50)
Browse files Browse the repository at this point in the history
* Fix #49: Fix syntax error

* chore: actions-gh-pages

* fix: syntax error

---------

Co-authored-by: Atsuya Watanabe <[email protected]>
  • Loading branch information
github-actions[bot] and atsuyaw authored Oct 23, 2024
1 parent 53b6f9e commit 23d8075
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ jobs:
submodules: false # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Setup Go
uses: actions/setup-go@v5
- uses: actions/setup-go@v5
with:
go-version: 'stable'

- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
- uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.135.0'
extended: true

- run: hugo --minify

- uses: peaceiris/actions-gh-pages@v3
- uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release

"on":
push:
branchs-ignore:
branches-ignore:
- main
workflow_dispatch:

Expand Down

0 comments on commit 23d8075

Please sign in to comment.