From 0ca16dc474055e8dff5c31372d848b635be523cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20Cora=C3=A7=C3=A3o?= Date: Sat, 1 Oct 2022 00:12:46 +0100 Subject: [PATCH] fixed github action bug --- .github/workflows/pages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 757e7bad..48d8600a 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -49,7 +49,7 @@ jobs: HUGO_ENVIRONMENT: production HUGO_ENV: production run: | - hugo --minify -s exampleSite --themesDir ../.. -d ../docs --baseURL https://nunocoracao.github.io/blowfish/ + hugo --minify -s exampleSite --themesDir ../.. -d ../docs --baseURL ${{ steps.deployment.outputs.page_url }} - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: @@ -59,7 +59,7 @@ jobs: deploy: environment: name: github-pages - url: https://nunocoracao.github.io/blowfish/ + url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest needs: build steps: