From e4459c8332b2aa5f1c7d724692f4f6fe8fa8af15 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 11:08:25 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- .gitea/workflows/gh-pages.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/gh-pages.yml diff --git a/.gitea/workflows/gh-pages.yml b/.gitea/workflows/gh-pages.yml new file mode 100644 index 0000000..1c72603 --- /dev/null +++ b/.gitea/workflows/gh-pages.yml @@ -0,0 +1,16 @@ +name: GitHub Pages + +on: + push: + branches: [main] + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Deploy + uses: peaceiris/actions-gh-pages@v4 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./docs