From 248b8bdc71d8d9e36cdca6bd16e2b64e6c25ac7b Mon Sep 17 00:00:00 2001 From: Madison Rye Progress Date: Sun, 15 Mar 2026 13:37:00 -0700 Subject: [PATCH] Don't use vars --- .gitea/workflows/deploy.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index ddae395..421e918 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -11,7 +11,7 @@ jobs: container: image: docker.gitea.com/runner-images:ubuntu-latest volumes: - - ${{ vars.DESTINATION }}:${{ vars.DESTINATION }} + - /opt/hugo/post-self.ink:/opt/hugo/post-self.ink env: DART_SASS_VERSION: 1.98.0 steps: @@ -36,5 +36,4 @@ jobs: - name: Build site run: | - echo -e "BASE_URL: ${{ vars.BASE_URL }}\\n DESTINATION ${{ vars.DESTINATION }}" - hugo build --gc --minify --baseURL ${{ vars.BASE_URL }} --destination ${{ vars.DESTINATION }} + hugo build --gc --minify --baseURL https://post-self.ink --destination /opt/hugo/post-self.ink