From feb6086fb1de16b6fd5f95a8c08cf52a3269ad6c Mon Sep 17 00:00:00 2001 From: SMGDev Date: Thu, 30 Oct 2025 10:28:49 +0000 Subject: [PATCH] feat: Update environment configuration and GitHub Actions for deployment --- .env | 2 +- .github/workflows/deploy-pages.yml | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.env b/.env index 4fc4ac4c..109d7d67 100644 --- a/.env +++ b/.env @@ -1,3 +1,3 @@ -VITE_ROUTE_BASE=/ +VITE_ROUTE_BASE=/TypeWords/ diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index be7d1956..fee624ac 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -2,7 +2,7 @@ name: Deploy to GitHub Pages on: push: - branches: [ 'master' ] + branches: [ 'feat/mobile' ] workflow_dispatch: permissions: @@ -52,3 +52,7 @@ jobs: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./dist + publish_branch: gh-pages