summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorSteffen Ernst <steffen.ernst@mullvad.net>2025-05-13 09:27:54 +0200
committerBug Magnet <marco.nikic@mullvad.net>2025-05-26 16:27:43 +0200
commit5ab9ead2286306fb22d5aa8314dec34ce0f4b0df (patch)
tree2be69a8de8951c4203c21819819c5a0f40d9d923 /.github
parentd1c550e4eca36f89af16ef82517f34647090f1cc (diff)
downloadmullvadvpn-5ab9ead2286306fb22d5aa8314dec34ce0f4b0df.tar.xz
mullvadvpn-5ab9ead2286306fb22d5aa8314dec34ce0f4b0df.zip
Fix composite actions need a specified shell
Diffstat (limited to '.github')
-rw-r--r--.github/actions/ios/configure-xcode/action.yml4
-rw-r--r--.github/actions/ios/setup-project-toolchain/action.yml7
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