From 51b3c81200ca14c65b3bb7cd07f534e9cd575a86 Mon Sep 17 00:00:00 2001 From: wds Date: Tue, 21 Oct 2025 20:25:08 +0800 Subject: [PATCH] feat: sync to github --- .gitea/workflows/push.yaml | 20 ++++++++++++++++++++ pyproject.toml | 9 ++++++--- 2 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 .gitea/workflows/push.yaml diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml new file mode 100644 index 0000000..102acce --- /dev/null +++ b/.gitea/workflows/push.yaml @@ -0,0 +1,20 @@ +name: Gitea Actions Demo +# run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +run-name: ubuntu22-a5000 +on: [push] + +jobs: + sync_job: + runs-on: a5000 + steps: + - name: Check out repository code + uses: actions/checkout@v4 + + - run: echo "This is a Gitea Actions demo workflow!" + - run: cat .git/config + - run: git remote remove origin || true + - run: git remote add origin https://github.com/wds-dxh/AutoTerminal.git + - run: git push origin main + + + \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index b63f2ee..d1c7dc4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,9 +33,12 @@ dependencies = [ ] [project.urls] -Homepage = "http://cloud-home.dxh-wds.top:20100/w/autoterminal" -Repository = "http://cloud-home.dxh-wds.top:20100/w/autoterminal" -Issues = "http://cloud-home.dxh-wds.top:20100/w/autoterminal/issues" +Homepage = "https://github.com/wds-dxh/AutoTerminal.git" +Repository = "https://github.com/wds-dxh/AutoTerminal.git" +Issues = "https://github.com/wds-dxh/AutoTerminal/issues" +# Homepage = "http://cloud-home.dxh-wds.top:20100/w/autoterminal" +# Repository = "http://cloud-home.dxh-wds.top:20100/w/autoterminal" +# Issues = "http://cloud-home.dxh-wds.top:20100/w/autoterminal/issues" [project.scripts] at = "autoterminal.main:main"