Skip to content

Commit

Permalink
Skip some superfluous echo commands
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Oct 4, 2024
1 parent 14dfeb6 commit 735ac31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ jobs:
if [[ '${{ matrix.os }}' == 'macos-13' ]]; then arch='x86_64'; else arch='arm64'; fi
# Otherwise, default to universal binaries, where possible.
else arch='arm64;x86_64'; fi
echo "CMAKE_OSX_ARCHITECTURES=${arch}" | tee -a "$GITHUB_ENV"
echo "buildId=${arch//;/-}" | tee -a "$GITHUB_OUTPUT"
tee -a "$GITHUB_ENV" <<< "CMAKE_OSX_ARCHITECTURES=${arch}"
tee -a "$GITHUB_OUTPUT" <<< "buildId=${arch//;/-}"
- name: Build
id: build
env:
Expand Down

0 comments on commit 735ac31

Please sign in to comment.