We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f49545 commit b67e319Copy full SHA for b67e319
.github/workflows/publish.yml
@@ -84,8 +84,12 @@ jobs:
84
with:
85
# no name - download all artifacts
86
path: "app/build/collected-binaries"
87
+ - name: "Prepare release zips for distribution"
88
+ run: "./gradlew -Prelease=true -PreleaseBinariesRootDir=app/build/collected-binaries prepareReleaseBinaryZips"
89
- name: "Create release"
90
run: "./gradlew -Prelease=true -PreleaseBinariesRootDir=app/build/collected-binaries changelogPush"
91
+ env:
92
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # for gh cli usage
93
- name: "Get version and set to output"
94
id: get_version
95
run: echo "VERSION=$(./gradlew changelogPrintCurrentVersion -Prelease=true --quiet)" >> "$GITHUB_OUTPUT"
0 commit comments