Skip to content

Commit

Permalink
Specify bundle identifier to avoid using sed
Browse files Browse the repository at this point in the history
  • Loading branch information
OctoNezd authored Jan 3, 2024
1 parent 8ac723f commit e6eef2f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/make-rel-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,19 @@ jobs:
- name: Convert to safari ext
working-directory: ./dist
run: |
xcrun safari-web-extension-converter . --ios-only --force --no-prompt --no-open
grep -rl com.yourCompany . | xargs sed -i "" -e 's/com\.yourCompany/me\.octonezd/g'
xcrun safari-web-extension-converter . --ios-only --force --no-prompt --no-open --bundle-identifier me.octonezd.oldlander
- name: Build ipa
working-directory: ./dist/OldLander
run: |
ls
xcodebuild -list -project OldLander.xcodeproj
xcodebuild clean archive CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" \
CODE_SIGNING_ALLOWED="NO" -sdk iphoneos -destination 'generic/platform=iOS' -archivePath ./xc-arc -scheme OldLander
ls
xcodebuild -exportArchive -archivePath ./xc-arc -exportPath ./ipa/ -exportOptionsPlist $GITHUB_WORKSPACE/dev/exportOptions.plist
ls
- name: Archive production artifacts
if: always()
uses: actions/upload-artifact@v3
with:
name: ios-build
Expand Down

0 comments on commit e6eef2f

Please sign in to comment.