Skip to content

Commit 57ad27a

Browse files
authored
build: update publish workflow (#56)
- 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
1 parent 8e09581 commit 57ad27a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ jobs:
6666
- name: Upload Release Asset
6767
env:
6868
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69-
run: gh release upload ${{ github.event.release.tag_name }} ./build/distributions/*
69+
run: |
70+
./gradlew clean pluginZip --info
71+
gh release upload ${{ github.event.release.tag_name }} ./build/distributions/*
7072
7173
# Create pull request
7274
- name: Create Pull Request

0 commit comments

Comments
 (0)