From c1b298e0c550262b7fc97d04e6411f71b1a5ef6d Mon Sep 17 00:00:00 2001 From: naielv <109038805+naielv@users.noreply.github.com> Date: Sat, 28 Jun 2025 00:10:46 +0200 Subject: [PATCH] fixed --- .gitea/workflows/static.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/static.yml b/.gitea/workflows/static.yml index 89a70a6..b83fb06 100644 --- a/.gitea/workflows/static.yml +++ b/.gitea/workflows/static.yml @@ -23,4 +23,18 @@ jobs: with: # Upload built files name: 'TeleSec-dist' - path: './dist' \ No newline at end of file + - name: "mkdir" + run: "mkdir -p _artifact" + - name: Download artifact + uses: actions/download-artifact@v3 + with: + name: 'TeleSec-dist' + path: _artifact + - name: "Zip app" + run: "zip build.py" + - name: Upload as release + uses: https://gitea.com/actions/release-action@main + with: + files: |- + _artifact/** + api_key: '${{secrets.TOKEN_PUSH_PLUS}}' \ No newline at end of file