Skip to content

Commit

Permalink
iOS ipa file paths were actually fine, revert this
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBriza committed Aug 18, 2023
1 parent 9c24d81 commit 001bffd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,21 +92,21 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: Lith.ipa
path: build_ios/src/Lith.ipa
path: build_ios/Lith.ipa
- name: Upload to GitHub
if: github.event_name == 'create'
run: |
export TAG_NAME=$(./dist/get-tag-name.sh)
if [[ "$TAG_NAME" != "" ]]; then
./dist/upload-github-release-asset.sh github_api_token="${{ secrets.GITHUB_TOKEN }}" tag="$TAG_NAME" filename="build_ios/src/Lith.ipa" renameto="Lith-iOS-${TAG_NAME}.ipa"
./dist/upload-github-release-asset.sh github_api_token="${{ secrets.GITHUB_TOKEN }}" tag="$TAG_NAME" filename="build_ios/Lith.ipa" renameto="Lith-iOS-${TAG_NAME}.ipa"
fi
- name: Upload to Testflight
if: github.event_name == 'create'
run: |
export TAG_NAME=$(./dist/get-tag-name.sh)
if [[ "$TAG_NAME" != "" ]]; then
xcrun altool --validate-app --file build_ios/src/Lith.ipa --type ios --username "${{ secrets.APPLEID_NAME }}" --password "${{ secrets.APPLEID_PASSWORD }}"
xcrun altool --upload-app --file build_ios/src/Lith.ipa --type ios --username "${{ secrets.APPLEID_NAME }}" --password "${{ secrets.APPLEID_PASSWORD }}"
xcrun altool --validate-app --file build_ios/Lith.ipa --type ios --username "${{ secrets.APPLEID_NAME }}" --password "${{ secrets.APPLEID_PASSWORD }}"
xcrun altool --upload-app --file build_ios/Lith.ipa --type ios --username "${{ secrets.APPLEID_NAME }}" --password "${{ secrets.APPLEID_PASSWORD }}"
fi
Android:
Expand Down

0 comments on commit 001bffd

Please sign in to comment.