From 338fe02cab5f9ba76680a121e172a5e1ec1f10c7 Mon Sep 17 00:00:00 2001 From: xiaoqidun Date: Thu, 27 Nov 2025 14:40:54 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=9E=84=E5=BB=BA=E8=BF=81=E7=A7=BB):=20?= =?UTF-8?q?=E6=9E=84=E5=BB=BA=E8=BF=81=E7=A7=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 22 ---------------------- .gitea/workflows/build.yaml | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 22 deletions(-) delete mode 100644 .drone.yml create mode 100644 .gitea/workflows/build.yaml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 8a651b9..0000000 --- a/.drone.yml +++ /dev/null @@ -1,22 +0,0 @@ -kind: pipeline -name: default -node: - region: cn -steps: - - name: build - pull: if-not-exists - image: alpine - commands: - - apk add zip - - zip -r fileadmin.zip * - - name: upload - image: ccr.ccs.tencentyun.com/xiaoqidun/gocos - settings: - secret_id: - from_secret: cos_secret_id - secret_key: - from_secret: cos_secret_key - bucket_url: - from_secret: cos_bucket_url - source: fileadmin.zip - target: product \ No newline at end of file diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..421ce1d --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,18 @@ +on: [push, workflow_dispatch] +jobs: + build: + runs-on: cn + steps: + - name: checkout + uses: actions/checkout@v6 + run: | + apt-get update && apt-get install -y zip && rm -rf /var/lib/apt/lists/* + zip -r fileadmin.zip * + - name: upload to cos + uses: docker://ccr.ccs.tencentyun.com/xiaoqidun/gocos + env: + PLUGIN_SECRET_ID: ${{secrets.cos_secret_id}} + PLUGIN_SECRET_KEY: ${{secrets.cos_secret_key}} + PLUGIN_BUCKET_URL: ${{secrets.cos_bucket_url}} + PLUGIN_SOURCE: fileadmin.zip + PLUGIN_TARGET: product \ No newline at end of file