Skip to content

Commit

Permalink
Fix setting envs
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Jul 25, 2024
1 parent 0afb237 commit 1423c3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/intl4x_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,19 +159,19 @@ jobs:

steps:

- run: echo "LOCAL_ICU4X_BINARY=$(realpath linux_x64)" >> $GITHUB_ENV
- run: export LOCAL_ICU4X_BINARY=$(realpath linux_x64)
if: matrix.os == 'ubuntu-latest'

- run: echo "LOCAL_ICU4X_BINARY=$(realpath macos_x64)" >> $GITHUB_ENV
- run: export LOCAL_ICU4X_BINARY=$(realpath macos_x64)
if: matrix.os == 'macos-latest'

- run: echo "LOCAL_ICU4X_BINARY=$(realpath windows_x64)" >> $GITHUB_ENV
- run: $env:LOCAL_ICU4X_BINARY = $(realpath windows_x64)
if: matrix.os == 'windows-latest'

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

- name: Download binaries
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
Expand Down

0 comments on commit 1423c3a

Please sign in to comment.