From 2a141132c9bfd6d65ae04eba65561b433cfc52cc Mon Sep 17 00:00:00 2001 From: suroh <mx@suroh.tk> Date: Wed, 5 Mar 2025 21:17:46 +0100 Subject: [PATCH] Testing workflow --- .gitea/workflows/deploy.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index cd70d4b..eb4b30e 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest container: volumes: - - /www + - /var/www:/www steps: - name: Clone code to runner uses: actions/checkout@v4 @@ -22,8 +22,11 @@ jobs: - name: Build 11ty site run: npm run build - - name: Check folders - run: ls -lh / + - name: Check workspace folder + run: ls -lh + + - name: Check www folder + run: ls -lh /www - name: Create folder if needed run: if [ ! -d /www/${{ gitea.event.repository.name }} ]; then mkdir /www/${{ gitea.event.repository.name }}; fi