From 675ea8128337f04882329a27648f2d79774e9af8 Mon Sep 17 00:00:00 2001 From: Mans Ziesel Date: Mon, 12 Jun 2023 22:15:41 +0200 Subject: [PATCH] test --- .gitea/workflows/hugo.yaml | 33 ++++++++++----------------------- 1 file changed, 10 insertions(+), 23 deletions(-) diff --git a/.gitea/workflows/hugo.yaml b/.gitea/workflows/hugo.yaml index f1d07fa..3c0c3ac 100644 --- a/.gitea/workflows/hugo.yaml +++ b/.gitea/workflows/hugo.yaml @@ -21,32 +21,19 @@ jobs: env: HUGO_VERSION: 0.108.0 steps: - - name: Install Hugo CLI - run: | - wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ - && dpkg -i ${{ runner.temp }}/hugo.deb - - name: Install Dart Sass Embedded - run: snap install dart-sass-embedded - name: Checkout - uses: https://github.com/actions/checkout@v3 + uses: actions/checkout@v3 with: - submodules: recursive - - name: Setup Pages - id: pages - uses: https://github.com/actions/configure-pages@v3 - - name: Install Node.js dependencies - run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true" - - name: Build with Hugo - env: - # For maximum backward compatibility with Hugo modules - HUGO_ENVIRONMENT: production - HUGO_ENV: production - run: | - hugo \ - --minify \ - --baseURL "${{ steps.pages.outputs.base_url }}/" + fetch-depth: 0 + + - name: hugo + uses: klakegg/actions-hugo@1.0.0 + with: + version: latest + image: asciidoctor-ci + - name: Upload artifact - uses: https://github.com/actions/upload-pages-artifact@v1 + uses: https://github.com/actions/upload-artifact@v3 with: path: ./public