From c488f2a2625590ac931a247312f28481ef142982 Mon Sep 17 00:00:00 2001 From: Piyush Mohite <75901900+git-pi-e@users.noreply.github.com> Date: Fri, 30 Aug 2024 03:30:23 +0530 Subject: [PATCH] Fix build output directory in workflow (#46) * build(*): Migrate to SvelteKit-4 | Update Build * build(ci.yml): Add develop branch to test in PRs * build(ci): Update build server command BREAKING CHANGE: Build & deploy process * refactor(footer): Remove link to Galileo Since Galileo is supposed to be a route, build it separately Temporarily * build(ci): change cd build command * chore: Remove trailing logo.svg * Update ci.yml Add PAT mention for gh pages * Update ci.yml Add write permisssion to ci script * Update ci.yml * Update ci.yml Add deploy key instead of PAT * build(ci.yml): Replace output folder with build --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c901b2..701b91f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ on: - develop permissions: contents: write - + jobs: build: runs-on: ubuntu-latest @@ -32,5 +32,5 @@ jobs: uses: JamesIves/github-pages-deploy-action@v4.6.3 with: branch: gh-pages - folder: .svelte-kit/output + folder: build ssh-key: ${{ secrets.GH_PAGES_DEPLOY_KEY }}