diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 38c6440..6d7b4d9 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -29,6 +29,9 @@ jobs: name: github-pages # Gitea pages expects this specific name path: 'public/' - - name: Deploy - # Use v2 or v3 for Gitea compatibility - uses: actions/deploy-pages@v2 \ No newline at end of file + - name: Deploy to Pages Branch + uses: peaceiris/actions-gh-pages@v3 + with: + personal_token: ${{ secrets.ACCESS_TOKEN }} # You'll need to create this in Gitea + publish_branch: pages + publish_dir: ./public \ No newline at end of file