From 10076838db125b4a7d581575142474d80f867a2c Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Sat, 4 Nov 2023 09:07:03 +0100 Subject: [PATCH] fix VERSION env value for generated docs Signed-off-by: Michael Kaufmann --- .github/workflows/build-and-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 18bb86a..45352e3 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -36,7 +36,7 @@ jobs: # - name: Build documentation html (latest) # run: npm run docs:build # env: -# VERSION: "latest" +# VERSION: "/latest/" # working-directory: . # - name: Deploy to server (latest) @@ -52,7 +52,7 @@ jobs: - name: Build documentation html (v2.1) run: npm run docs:build env: - VERSION: "v2.1" + VERSION: "/v2.1/" working-directory: . - name: Deploy to server (v2.1)