Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kuruk-mm committed Dec 11, 2024
1 parent 8461cbf commit 6ab0f1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ios_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,9 @@ jobs:
# Set up provisioning profile
- name: Set up provisioning profile
env:
PROFILE_BASE64: ${{ secrets.PROFILE_BASE64 }}
run: |
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
echo "$PROFILE_BASE64" | base64 --decode > profile.mobileprovision
echo "${{ secrets.IOS_PROFILE_BASE64 }}" | base64 --decode > profile.mobileprovision
mv profile.mobileprovision ~/Library/MobileDevice/Provisioning\ Profiles/
# Build section
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
secrets:
IOS_P12_BASE64: ${{ secrets.IOS_P12_BASE64 }}
IOS_P12_PASSWORD: ${{ secrets.IOS_P12_PASSWORD }}
IOS_PROFILE_BASE64: ${{ secrets.IOS_PROFILE_BASE64 }}


# # First stage: Only static checks, fast and prevent expensive builds from running.
Expand Down

0 comments on commit 6ab0f1e

Please sign in to comment.