EAS Local Build on Azure Devops

In case anyone has had trouble running EAS local build on Azure DevOps after September 30, it’s because they updated XCode from 13.4.1 to 14.x which causes issues with expo-constants from what I can tell.

Anyway to get around the issue I added the following block before eas build

      - ${{ if eq(parameters.platform, 'ios') }}:
        - bash: |
            sudo xcode-select -s /Applications/Xcode_13.4.1.app
          displayName: Set XCode version
      - bash: |
          eas build --platform=${{ parameters.platform }} --profile=${{ parameters.profile }} --non-interactive --local