Skip to content

Commit

Permalink
correct copy and paste mistake in bash expression
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalak committed Nov 28, 2024
1 parent 14f379f commit 5a1d0eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ jobs:
- uses: actions/checkout@v4
- name: Select env configuration
run: |
if [ matrix.arch = 'x64_arm' || matrix.arch = 'x64_arm64' ]; then
if [[ "${{ matrix.arch }}" = "x64_arm" || "${{ matrix.arch }}" = "x64_arm64" ]]; then
echo "CK_OPENSSL_VERSION=${{ env.OPENSSL_ARM_VERSION }}" >> "$GITHUB_ENV"
echo "CK_K4W_PATH=." >> "$GITHUB_ENV"
else
Expand Down

0 comments on commit 5a1d0eb

Please sign in to comment.