diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 97ecf0a..146462a 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -31,15 +31,19 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Setup Pages uses: actions/configure-pages@v5 + - name: Clean repo before upload - run: rm .github .git .gitattributes -rf + run: rm .editorconfig .git .github .gitattributes -rf + - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: # Upload entire repository path: '.' + - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4