From 17328eedbbf13bb5134b78f96190f37669b6f20d Mon Sep 17 00:00:00 2001 From: Laky64 Date: Sun, 18 Feb 2024 21:28:18 +0100 Subject: [PATCH] Fixed missing commas --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7d8ffd5..d7bba9ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,7 +54,7 @@ jobs: - name: Build Debug Shared lib run: | - if [[ ${{ matrix.cibw_archs }} != 'aarch64' ]]; then + if [[ '${{ matrix.cibw_archs }}' != 'aarch64' ]]; then python3 setup.py build_shared --no-preserve-cache --debug else docker run -v $(pwd):/app -w /app -it ghcr.io/pytgcalls/ntgcalls/arm64:latest python3 setup.py build_shared --no-preserve-cache --debug @@ -62,7 +62,7 @@ jobs: - name: Build Release Shared lib run: | - if [[ ${{ matrix.cibw_archs }} != 'aarch64' ]]; then + if [[ '${{ matrix.cibw_archs }}' != 'aarch64' ]]; then python3 setup.py build_shared --no-preserve-cache else docker run -v $(pwd):/app -w /app -it ghcr.io/pytgcalls/ntgcalls/arm64:latest python3 setup.py build_shared --no-preserve-cache