diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 01b59f7..df1817f 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -1,4 +1,4 @@ -name: Build Portfolio +name: Deploy Portfolio on: push: @@ -9,20 +9,21 @@ jobs: deploy: runs-on: ubuntu-latest + container: + volumes: + - /repos:/repos + steps: - name: Checkout uses: actions/checkout@v4 - - name: Node Version - run: | - 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 + - name: Verify Mount + run: | + ls -la /repos + ls -la /repos/portfolio \ No newline at end of file