From bf03f50c5a8937a8baacc6ed3252b0a1ce7e86fd Mon Sep 17 00:00:00 2001 From: sugoidogo Date: Sat, 20 Dec 2025 06:54:30 -0800 Subject: [PATCH] fix missing worflow content --- .gitea/workflows/publish.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index e69de29..8125d4a 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -0,0 +1,14 @@ +on: + push: + tags: + - "*" + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + - run: npm ci + - run: npx wrangler deploy + env: + CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} \ No newline at end of file