From d11ad8fab70e46a7f21bed015e0e07536091be1d Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 21 Nov 2023 00:41:51 +0100 Subject: [PATCH] try deploying with subfolder --- .github/workflows/frontend.deploy.docs.yml | 8 ++++---- .vuepress/config.ts | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/frontend.deploy.docs.yml b/.github/workflows/frontend.deploy.docs.yml index a79962e..e3d16b8 100644 --- a/.github/workflows/frontend.deploy.docs.yml +++ b/.github/workflows/frontend.deploy.docs.yml @@ -1,8 +1,8 @@ name: "frontend:deploy:docs to github" -on: - push: - branches: - - master +on: [push] +# push: +# branches: +# - master jobs: build-and-deploy: runs-on: ubuntu-latest diff --git a/.vuepress/config.ts b/.vuepress/config.ts index 0cdf891..8dcb70b 100644 --- a/.vuepress/config.ts +++ b/.vuepress/config.ts @@ -4,4 +4,5 @@ export default defineUserConfig({ title: 'IT4C Frontend Boilerplate Documentation', description: 'IT4C Frontend Boilerplate Documentation', dest: 'build/docs', + base: '/boilerplate-frontend/', })