From ee8d990cc543c4a70fcd7fabc6fe9da0f4c23d4e Mon Sep 17 00:00:00 2001 From: SnippetsX Date: Tue, 12 Nov 2024 23:35:28 +0300 Subject: [PATCH] update CICD --- .gitea/workflows/build.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 87f997e..c08b734 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -35,13 +35,12 @@ jobs: if-no-files-found: error retention-days: 5 - name: Create Release - uses: actions/create-release@v1 + uses: actions/gitea-release-action@main env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - assets: | - admin_dashboard-${{ env.VERSION }}.zip + files: admin_dashboard-${{ env.VERSION }}.zip tag_name: v${{ env.VERSION }} - release_name: Release v${{ env.VERSION }} + name: Release v${{ env.VERSION }} draft: false prerelease: ${{ contains(env.VERSION, 'DEV') || contains(env.VERSION, 'ALPHA') || contains(env.VERSION, 'BETA') }} \ No newline at end of file