diff options
| -rw-r--r-- | .github/actions/ios/configure-xcode/action.yml | 4 | ||||
| -rw-r--r-- | .github/actions/ios/setup-project-toolchain/action.yml | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/.github/actions/ios/configure-xcode/action.yml b/.github/actions/ios/configure-xcode/action.yml index 17a1a8b52e..c13dfb3eb0 100644 --- a/.github/actions/ios/configure-xcode/action.yml +++ b/.github/actions/ios/configure-xcode/action.yml @@ -10,4 +10,6 @@ runs: - name: Configure Xcode project run: | for file in *.xcconfig.template ; do cp $file ${file//.template/} ; done - working-directory: ios/Configurations
\ No newline at end of file + working-directory: ios/Configurations + shell: bash +
\ No newline at end of file diff --git a/.github/actions/ios/setup-project-toolchain/action.yml b/.github/actions/ios/setup-project-toolchain/action.yml index db053370ae..4f851f55da 100644 --- a/.github/actions/ios/setup-project-toolchain/action.yml +++ b/.github/actions/ios/setup-project-toolchain/action.yml @@ -16,6 +16,7 @@ runs: run: | git config --global --add safe.directory '*' git submodule update --init --recursive ios/wireguard-apple + shell: bash - name: Configure cache uses: actions/cache@v3 @@ -32,16 +33,20 @@ runs: - name: Configure Rust run: rustup target add ${{ inputs.ios_rust_target }} + shell: bash - name: Install xcbeautify run: | brew update brew install xcbeautify + shell: bash - name: Install protobuf run: | brew update brew install protobuf + shell: bash - name: Configure Xcode project - run: uses ./.github/actions/ios/configure-xcode
\ No newline at end of file + run: uses ./.github/actions/ios/configure-xcode + shell: bash |
