Przeglądaj źródła

run jlink with default shell on each OS

(bash on mac causes problems with variable substitution)
Sebastian Stenzel 3 lat temu
rodzic
commit
b8642677ba
1 zmienionych plików z 3 dodań i 4 usunięć
  1. 3 4
      .github/workflows/build.yml

+ 3 - 4
.github/workflows/build.yml

@@ -6,10 +6,6 @@ on:
 env:
   JAVA_VERSION: 16
 
-defaults:
-  run:
-    shell: bash
-
 jobs: 
   test:
     name: Build and Test
@@ -59,6 +55,9 @@ jobs:
         - os: macOS-latest
           profile: mac
           launcher: launcher-mac.sh
+    defaults:
+      run:
+        shell: bash
     steps:
       - uses: actions/checkout@v2
       - uses: actions/setup-java@v1