From 5d1dc5d2aa13c0b0736e7de869f6490e59923e11 Mon Sep 17 00:00:00 2001 From: Laurent Senta Date: Wed, 15 Nov 2023 10:38:45 +0100 Subject: [PATCH] refactor: website naming --- .github/workflows/deploy-pages.yml | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 9f5ada357..ae8a396b9 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -43,7 +43,7 @@ jobs: - name: Build run: | npm ci - make www + make website env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} OUTPUT_BASE_URL: ${{ steps.pages.outputs.base_url }} diff --git a/Makefile b/Makefile index f22e85b9c..c90ddbdef 100644 --- a/Makefile +++ b/Makefile @@ -72,10 +72,10 @@ aggregates.db: artifacts rm -f ./aggregates.db node ./munge_sql.js ./aggregates.db ./artifacts/*.json -www_content: aggregates.db +website_content: aggregates.db node ./munge_aggregates.js ./aggregates.db ./www -www: www_content +website: website_content cd www && hugo --minify $(if ${OUTPUT_BASE_URL},--baseURL ${OUTPUT_BASE_URL}) .PHONY: gateway-conformance