Skip to content

Commit

Permalink
Fix if else statement
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Jul 24, 2024
1 parent ca3f1ca commit 4fb702c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/intl4x_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,15 +186,15 @@ jobs:
- name: Display structure of downloaded files
run: ls -R

- run: |
if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
echo "LOCAL_ICU4X_BINARY=../../linux_x64" >> $GITHUB_ENV
elif [ "${{ matrix.os }}" == "macos-latest" ]; then
echo "LOCAL_ICU4X_BINARY=../../macos_x64" >> $GITHUB_ENV
elif [ "${{ matrix.os }}" == "windows-latest" ]; then
echo "LOCAL_ICU4X_BINARY=../../windows_x64" >> $GITHUB_ENV
fi
- run: echo "LOCAL_ICU4X_BINARY=../../linux_x64" >> $GITHUB_ENV
if: matrix.os == 'ubuntu-latest'

- run: echo "LOCAL_ICU4X_BINARY=../../macos_x64" >> $GITHUB_ENV
if: matrix.os == 'macos-latest'

- run: echo "LOCAL_ICU4X_BINARY=../../windows_x64" >> $GITHUB_ENV
if: matrix.os == 'windows-latest'

- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
with:
submodules: true
Expand Down

0 comments on commit 4fb702c

Please sign in to comment.