From d0f7b6189e9507e3cf4afe64e9133dda2e20a7af Mon Sep 17 00:00:00 2001 From: adryd Date: Thu, 16 Nov 2023 14:57:14 -0500 Subject: [PATCH] Update publish.yml --- .github/workflows/publish.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4c163a8..03b6ec1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,14 @@ jobs: npm install npm run build - - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4 + - name: Setup Pages + uses: actions/configure-pages@v3 + - name: Upload artifact + uses: actions/upload-pages-artifact@v2 with: - folder: dist \ No newline at end of file + # Upload entire repository + path: 'dist' + + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2