Skip to content

Commit

Permalink
[GH Actions] Bump macOS Build CI workflow to macos-13
Browse files Browse the repository at this point in the history
Summary: While we're bumping things...

Test Plan: Land and revert if it fails

Reviewers: ashoat, tomek, bartek, varun, michal

Reviewed By: ashoat

Subscribers: wyilio

Differential Revision: https://phab.comm.dev/D9541
  • Loading branch information
atulsmadhugiri committed Oct 19, 2023
1 parent 5de857a commit 2fa9df9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/macos_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
build:
name: Build macOS app
runs-on: macos-12
runs-on: macos-13

steps:
- name: Checkout
Expand All @@ -33,7 +33,7 @@ jobs:
PROVISIONPROFILE_PATH=$GITHUB_WORKSPACE/desktop/macOS_App_Provisioning_Profile.provisionprofile
# import certificate from secrets
echo -n "$MACOS_BUILD_CERTIFICATE_BASE64" | base64 --decode --output $CERTIFICATE_PATH
echo -n "$MACOS_BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
# create temporary keychain
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
Expand All @@ -45,7 +45,7 @@ jobs:
security list-keychain -d user -s $KEYCHAIN_PATH
# import provisioning profile from secrets
echo -n "$MACOS_PROVISIONPROFILE_BASE64" | base64 --decode --output $PROVISIONPROFILE_PATH
echo -n "$MACOS_PROVISIONPROFILE_BASE64" | base64 --decode -o $PROVISIONPROFILE_PATH
- name: sudo ./install_protobuf.sh
working-directory: ./scripts
run: sudo ./install_protobuf.sh
Expand Down

0 comments on commit 2fa9df9

Please sign in to comment.