From cef926ab8266d2edc9ae4d4c11f9c50ec9d0b6d3 Mon Sep 17 00:00:00 2001 From: Keto Date: Tue, 6 Sep 2022 10:06:41 -0400 Subject: [PATCH] Use permasigner/action over manual installation (#7) * Use permasigner/action over manual installation Signed-off-by: TheRealKeto * Permasign is not Permasigner Signed-off-by: TheRealKeto * Spell github.workspace right next time... Signed-off-by: TheRealKeto Signed-off-by: TheRealKeto --- .github/workflows/build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8112452..1c3adbf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,9 +40,12 @@ jobs: cp -R ${{ github.workspace }}/xcodebuild/Release-iphoneos/Santander.app ${{ github.workspace }}/ipadir/Payload cd ${{ github.workspace }}/ipadir zip -r ${{ github.workspace }}/Santander.ipa . - - pip3 install -U git+https://github.com/itsnebulalol/permasigner.git - permasigner -d -p ${{ github.workspace }}/Santander.ipa -o ${{ github.workspace }}/Santander.deb -e ${{ github.workspace }}/entitlements.plist + - name: Permasign built IPA + uses: permasigner/action@v1.1.0 + with: + input: "${{ github.workspace }}/Santander.ipa" + output: "${{ github.workspace }}/Santander.deb" + entitlements: "${{ github.workspace }}/entitlements.plist" - name: Upload IPA uses: actions/upload-artifact@v3.1.0 with: