Skip to content

Commit

Permalink
Fixed missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
Laky-64 committed Feb 18, 2024
1 parent 0441eee commit 17328ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ 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
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
Expand Down

0 comments on commit 17328ee

Please sign in to comment.