From ae2591394481b3693b6a1c219ca09813f084098b Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Sun, 31 Mar 2024 13:21:08 +0300 Subject: [PATCH] fix: deploy action to another package --- .github/workflows/deploy.yml | 8 ++++---- vite.config.ts | 3 ++- vue.config.js | 3 --- 3 files changed, 6 insertions(+), 8 deletions(-) delete mode 100644 vue.config.js diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a5e3f86..e9b04ed 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,12 +11,12 @@ jobs: steps: - uses: actions/checkout@v3 - id: Build-Deploy-Vue - uses: thefrustrateddev/vue-deploy-github-pages@v1.0.0 + uses: xRealNeon/VuePagesAction@1 with: username: 'ivuorinen' reponame: 'sysvinit-service-generator' token: ${{ secrets.GITHUB_TOKEN }} # no need to change this line this is used to create the branch in your application repository basebranchname: main - email: 'ivuorinen@users.noreply.github.com' - name: 'ivuorinen' - commitmessage: 'Deploy Vue App 🚀' + gitemail: 'ivuorinen@users.noreply.github.com' + gitname: 'ivuorinen' + gitmsg: 'Deploy Vue App 🚀' diff --git a/vite.config.ts b/vite.config.ts index ca4f95a..ae336dd 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -14,5 +14,6 @@ export default defineConfig({ alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } - } + }, + base: '/sysvinit-service-generator/' }) diff --git a/vue.config.js b/vue.config.js deleted file mode 100644 index 174bd6e..0000000 --- a/vue.config.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - publicPath: '/sysvinit-service-generator/' -}