From 0590f912fcce9b0c257424efc5e79075a0a88a0c Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Mon, 8 Mar 2021 15:52:26 +0900 Subject: [PATCH] docs: Add Non-ascii Filename section (#499) --- README.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/README.md b/README.md index b7f23f6..b45fa25 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ Thanks to this change, we can complete this action in less than a few seconds. - [⭐️ Read Hugo version from file](#%EF%B8%8F-read-hugo-version-from-file) - [⭐️ Workflow for autoprefixer and postcss-cli](#%EF%B8%8F-workflow-for-autoprefixer-and-postcss-cli) - [⭐️ Workflow for asciidoctor](#%EF%B8%8F-workflow-for-asciidoctor) + - [⭐️ Non-ascii Filename](#%EF%B8%8F-non-ascii-filename) - [CHANGELOG](#changelog) - [License](#license) - [About Maintainer](#about-maintainer) @@ -159,6 +160,10 @@ Note that the cache dir location of Hugo on a Linux-based operating system is `/ run: hugo --minify ``` +
+Back to TOC ☝️ +
+ ### ⭐️ Read Hugo version from file How to sync a Hugo version between a Docker Compose and a GitHub Actions workflow via `.env` file. @@ -210,6 +215,10 @@ The alpine base Hugo Docker image is provided on the following repository. > [peaceiris/hugo-extended-docker: Hugo alpine base Docker image (Hugo extended and Hugo Modules)](https://github.com/peaceiris/hugo-extended-docker) +
+Back to TOC ☝️ +
+ ### ⭐️ Workflow for autoprefixer and postcss-cli Here is an example workflow for the [google/docsy] Hugo theme. @@ -266,6 +275,10 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} ``` +
+Back to TOC ☝️ +
+ ### ⭐️ Workflow for asciidoctor Here is an example workflow for a Hugo project using `asciidoctor`. @@ -315,6 +328,39 @@ jobs: Back to TOC ☝️ +### ⭐️ Non-ascii Filename + +cf. [Gitinfo fails on unicode filename · Issue #3071 · gohugoio/hugo](https://github.com/gohugoio/hugo/issues/3071) + +```yaml +name: github pages + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Disable quotePath + run: git config core.quotePath false + + - name: Setup Hugo + uses: peaceiris/actions-hugo@v2 + with: + hugo-version: '0.79.1' +``` + +
+Back to TOC ☝️ +
+ ## CHANGELOG