File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -44,22 +44,27 @@ jobs:
4444 uses : gradle/actions/setup-gradle@v4
4545
4646 - name : Build and test with Gradle
47+ shell : bash
4748 run : ./gradlew :launcher-gui:runtimeZip -Prelease_channel=${{ inputs.release_type }} --stacktrace
4849
4950 - name : Get release tag
5051 id : release-tag
52+ shell : bash
5153 run : |
5254 RELEASE_TAG=$(./gradlew showReleaseTag -Prelease_channel=${{ inputs.release_type }} --quiet)
5355 echo "release_tag=$RELEASE_TAG" >> "$GITHUB_OUTPUT"
5456
5557 - name : Get version
5658 id : version
59+ shell : bash
5760 run : |
5861 VERSION=$(./gradlew showVersion -Prelease_channel=${{ inputs.release_type }} --quiet)
5962 echo "version=$VERSION" >> "$GITHUB_OUTPUT"
6063
6164 - name : Rename artifact
65+ shell : bash
6266 run : mv launcher-gui/build/image.zip launcher-gui/build/taulauncher-${{ matrix.os }}.zip
67+
6368 - name : Upload version artifact
6469 uses : actions/upload-artifact@v4
6570 with :
You can’t perform that action at this time.
0 commit comments