decode to repo

This commit is contained in:
Vadim 2024-03-16 21:10:15 +01:00
parent 7870138bfd
commit be456a9a8f

View file

@ -211,11 +211,14 @@ jobs:
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
with: with:
name: m3_lightmeter_ipa name: m3_lightmeter_ipa
- name: Upload app to TestFlight - name: Upload app to TestFlight
env:
API_KEY: AuthKey_${{ secrets.APP_STORE_API_KEY_ID }}.p8
run: | run: |
mkdir -p ~/private_keys mkdir -p ~/private_keys
bash .github/scripts/restore_from_base64.sh "${{ secrets.APP_STORE_API_KEY }}" "~/private_keys/AuthKey_${{ secrets.APP_STORE_API_KEY_ID }}.p8" bash .github/scripts/restore_from_base64.sh "${{ secrets.APP_STORE_API_KEY }}" "${{ env.API_KEY }}"
cp "${{ env.API_KEY }}" ~/private_keys
xcrun altool --output-format xml --upload-app -f lightmeter.ipa -t ios --apiKey ${{ secrets.APP_STORE_API_KEY_ID }} --apiIssuer ${{ secrets.APP_STORE_ISSUER_ID }} xcrun altool --output-format xml --upload-app -f lightmeter.ipa -t ios --apiKey ${{ secrets.APP_STORE_API_KEY_ID }} --apiIssuer ${{ secrets.APP_STORE_ISSUER_ID }}
cleanup: cleanup: