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