Skip to content

Commit

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

0 comments on commit 735ec8d

Please sign in to comment.