Skip to content

Commit

Permalink
Fix shell in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ab20zip committed Jun 21, 2024
1 parent 39853dc commit 819ecd4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/actions/common-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ runs:
steps:
- name: Set up JDK for Linux and macOS
if: runner.os != 'Windows'
shell: bash
run: |
semeru_version="jdk-${{ matrix.java-version }}"
if [ ${{ matrix.os }} = "ubuntu-latest" ]; then
Expand All @@ -28,6 +29,7 @@ runs:
- name: Set up JDK for Windows
if: runner.os == 'Windows'
shell: cmd
run: |
$jdk_version = "${{ matrix.java-version }}"
$url = "https://github.com/ibmruntimes/semeru{semeru-version}-binaries/releases/download/jdk-$jdk_version%2B35_openj9-0.24.0/OpenJDK${jdk_version}U-jdk_x64_windows_openj9_0.24.0.zip"
Expand Down

0 comments on commit 819ecd4

Please sign in to comment.