From 0a2865132dd9a5f5f55e9a74d93a9d0ccb3436f6 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 15 Apr 2024 15:44:48 +0100 Subject: [PATCH] Configure shell for all run steps See gh-40353 --- .github/actions/build/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 2ad97b0bed5..f198726924d 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -63,6 +63,7 @@ runs: echo systemProp.org.gradle.java.installations.paths=${{ format('$JAVA_HOME_{0}_X64', inputs.java-version) }} >> $HOME/.gradle/gradle.properties - name: Build if: ${{ !inputs.publish }} + shell: bash env: GRADLE_ENTERPRISE_URL: 'https://ge.spring.io' GRADLE_ENTERPRISE_ACCESS_KEY: ${{ inputs.gradle-enterprise-secret-access-key }} @@ -71,6 +72,7 @@ runs: run: ./gradlew build - name: Build and Publish if: ${{ inputs.publish }} + shell: bash env: GRADLE_ENTERPRISE_URL: 'https://ge.spring.io' GRADLE_ENTERPRISE_ACCESS_KEY: ${{ inputs.gradle-enterprise-secret-access-key }}