From 2c15798495936195c93ce8479b7cc46f2931be47 Mon Sep 17 00:00:00 2001 From: Dmitrii Tikhomirov Date: Mon, 24 Jun 2024 00:23:37 -0700 Subject: [PATCH] use bash to run build in github actions --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index c9a2b8eb2f..b61a48f4a1 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -20,7 +20,7 @@ jobs: distribution: 'temurin' - name: Build and test run: | - sh build_test.sh + bash build_test.sh - name: Upload test results for review uses: actions/upload-artifact@v4 if: always() @@ -59,7 +59,7 @@ jobs: mvn wrapper:wrapper -Dmaven=${{ matrix.mvn }} - name: Build and test run: | - sh build_test.sh + bash build_test.sh - name: Upload test results for review uses: actions/upload-artifact@v4 if: always()