diff --git a/.gitea/workflows/pages.yml b/.gitea/workflows/pages.yml new file mode 100644 index 0000000..59f4d81 --- /dev/null +++ b/.gitea/workflows/pages.yml @@ -0,0 +1,18 @@ +name: Pages + +on: + push: + branches: [main, gh-pages] + +jobs: + deploy: + runs-on: ubuntu-latest + permissions: + contents: write + pages: write + steps: + - uses: actions/checkout@v4 + - uses: actions/upload-pages-artifact@v3 + with: + path: '.' + - uses: actions/deploy-pages@v4