Skip to content

Commit

Permalink
Try add quotations
Browse files Browse the repository at this point in the history
  • Loading branch information
mmghannam committed Sep 11, 2023
1 parent efa4b08 commit c68f53e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,17 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]


steps:
- uses: actions/checkout@v3

- name: Install julia using juliaup
run: |
if [ ${{ matrix.os }} == "ubuntu-latest" ]; then
if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
curl -fsSL https://install.julialang.org | sh -s -- -y
elif [ ${{ matrix.os }} == "macos-latest" ]; then
elif [ "${{ matrix.os }}" == "macos-latest" ]; then
curl -fsSL https://install.julialang.org | sh -s -- -y
elif [ ${{ matrix.os }} == "windows-latest" ]; then
elif [ "${{ matrix.os }}" == "windows-latest" ]; then
winget install julia -s msstore
fi
Expand Down

0 comments on commit c68f53e

Please sign in to comment.