Skip to content

Commit b6c5ae6

Browse files
committed
Force bash [skip ci]
1 parent 3e63f62 commit b6c5ae6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)