From 7d690d716e244f2fa7438878ae11e254dfba5644 Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Tue, 1 Apr 2025 21:08:59 +0300 Subject: [PATCH] build: update publish workflow - initial publish was done manually - but we still want a gh release so we have to augment the release workflow to build the zip file because the publish task does not run --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7eccb36..b37cc2d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,7 +66,9 @@ jobs: - name: Upload Release Asset env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: gh release upload ${{ github.event.release.tag_name }} ./build/distributions/* + run: | + ./gradlew clean pluginZip --info + gh release upload ${{ github.event.release.tag_name }} ./build/distributions/* # Create pull request - name: Create Pull Request