From 735ec8d12e0fc5ab4b9505a7d791418ee9e04104 Mon Sep 17 00:00:00 2001 From: Laky64 Date: Sun, 18 Feb 2024 21:31:25 +0100 Subject: [PATCH] Fixed some typo --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7d8ffd5..6735b0b1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,18 +54,18 @@ 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 + docker run -it -v $(pwd):/app -w /app ghcr.io/pytgcalls/ntgcalls/arm64:latest python3 setup.py build_shared --no-preserve-cache --debug fi - 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 + docker run -it -v $(pwd):/app -w /app ghcr.io/pytgcalls/ntgcalls/arm64:latest python3 setup.py build_shared --no-preserve-cache fi - name: Upload Debug Shared lib for ${{ matrix.shared_name }}