Fix conditional to check if arch is arm

This commit is contained in:
Deda 2024-03-19 16:10:44 +01:00
parent aecae7cc38
commit d3802e10aa
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ jobs:
fetch-depth: 0 # Required because of release/get_version.py
- name: "Unlock keychain for current session" # Required beacuse ARM builds run on macos
if: ${{ inputs.arch }} == "arm"
if: ${{ inputs.arch == 'arm' }}
run: security -v unlock-keychain -p ${{ secrets.SELF_HOSTED_RUNNER_PASSWORD }} ~/Library/Keychains/login.keychain-db
- name: "Spin up mgbuild container"

View File

@ -63,7 +63,7 @@ jobs:
fetch-depth: 0 # Required because of release/get_version.py
- name: "Unlock keychain for current session" # Required beacuse ARM builds run on macos
if: ${{ inputs.arch }} == "arm"
if: ${{ inputs.arch == 'arm' }}
run: security -v unlock-keychain -p ${{ secrets.SELF_HOSTED_RUNNER_PASSWORD }} ~/Library/Keychains/login.keychain-db
- name: "Spin up mgbuild container"