From 7aeeb4beed5c396603d5023effa640c97d1e63b4 Mon Sep 17 00:00:00 2001 From: "Mateus Felipe C. C. Pinto" Date: Sat, 20 Apr 2024 23:05:23 -0300 Subject: [PATCH] Test 2 Signed-off-by: Mateus Felipe C. C. Pinto --- .github/workflows/deployment.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deployment.yaml b/.github/workflows/deployment.yaml index b13c200..3691b79 100644 --- a/.github/workflows/deployment.yaml +++ b/.github/workflows/deployment.yaml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout files - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Copy static assets to dist shell: bash run: | @@ -46,12 +46,17 @@ jobs: uses: actions/download-artifact@v4 with: name: static_assets + - name: ls + shell: bash + run: | + echo "lsing" + ls -la . - name: Setup Pages uses: actions/configure-pages@v5 - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: - path: './static' + name: github-pages - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4