Skip to content

Create url

Create url #4

Workflow file for this run

name: ios-resign
on:
workflow_dispatch: {}
push:
paths:
- 'Feather/output/featherunsigned.ipa'
jobs:
resign:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Verify unsigned IPA exists
run: |
if [ ! -f Feather/output/featherunsigned.ipa ]; then
echo "Unsigned IPA not found at Feather/output/featherunsigned.ipa" >&2
exit 1
fi
- name: Resign IPA using ios-resign action
uses: bradyjoslin/ios-resign-action@v1
with:
ipa_path: Feather/output/featherunsigned.ipa
mobileprovision: ${{ secrets.MOBILEPROVISION }}
cert_p12: ${{ secrets.CERT_P12 }}
p12_pass: ${{ secrets.P12_PASS }}
signing_identity: ${{ secrets.SIGNING_IDENTITY }}
- name: Upload resigned IPA
uses: actions/upload-artifact@v3
with:
name: resigned-ipa
path: |
./**.ipa