From 9c0cbb0d534e1349267b9aec46e772d875f7da00 Mon Sep 17 00:00:00 2001 From: Joakim Carlstein Date: Mon, 18 Dec 2023 15:42:29 +0100 Subject: [PATCH] ci: set site and base correctly --- .github/workflows/deploy.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 1272c67..ebb2ae0 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -17,14 +17,14 @@ permissions: jobs: build: runs-on: ubuntu-latest + environment: + ASTRO_SITE: ${{ vars.ASTRO_SITE }} + ASTRO_BASE: ${{ vars.ASTRO_BASE }} steps: - name: Checkout your repository using git uses: actions/checkout@v3 - name: Install, build, and upload your site output uses: withastro/action@v1 - environment: - ASTRO_SITE: 'https://aboviq.github.io' - ASTRO_BASE: '/emigrate' with: path: ./docs # The root location of your Astro project inside the repository. (optional) node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 18. (optional)