Skip to content

Commit

Permalink
fix bash invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
gliwka committed Nov 24, 2023
1 parent ae47673 commit 1c240e5
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 @@ -64,10 +64,10 @@ jobs:
with:
xcode-version: latest-stable
- name: Build native binaries
run: bash ./build.sh deploy
run: ./build.sh deploy
if: matrix.os != 'linux'
- name: Build native binaries in centos container
if: matrix.os == 'linux'
uses: docker://ghcr.io/gliwka/centos7-toolchain:main@sha256:6e5d9801e5171a014c8d63b6fbdadd0dbe4ea5a624d59ec67fe954d0862fbdff
with:
args: bash ./build.sh deploy
args: /bin/bash -l -c ./build.sh deploy

0 comments on commit 1c240e5

Please sign in to comment.