From 842c10ac580a0f957a52966737802d65727d1d05 Mon Sep 17 00:00:00 2001 From: Clezio Penha Date: Wed, 10 Jun 2026 15:35:41 -0300 Subject: [PATCH] Replace test workflow with Astro build --- .gitea/workflows/deploy.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 0d45066..01b59f7 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -1,4 +1,4 @@ -name: Deploy Portfolio +name: Build Portfolio on: push: @@ -9,12 +9,20 @@ jobs: deploy: runs-on: ubuntu-latest - container: - volumes: - - /home/ubuntu/repos:/repos - steps: - - name: Check mounted repo + - name: Checkout + uses: actions/checkout@v4 + + - name: Node Version run: | - ls -la /repos - ls -la /repos/portfolio + node --version + npm --version + + - name: Install Dependencies + run: npm ci + + - name: Build Astro + run: npm run build + + - name: List Dist + run: ls -la dist \ No newline at end of file