Skip to content

Commit

Permalink
ci: remove ios package
Browse files Browse the repository at this point in the history
  • Loading branch information
lcp committed Jan 22, 2024
1 parent 0c2f51d commit 0b1cbcf
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:

# Flutter macos/ios ipa build command.
- run: flutter build macos
- run: |
flutter build ios --no-codesign
cd build/ios/iphoneos
mkdir Payload
cd Payload
ln -s ../Runner.app
cd ..
zip -r app.ipa Payload
# - run: |
# flutter build ios --no-codesign
# cd build/ios/iphoneos
# mkdir Payload
# cd Payload
# ln -s ../Runner.app
# cd ..
# zip -r app.ipa Payload

- name: package as dmg
run: create-dmg build/macos/Build/Products/Release/whisper.app
Expand All @@ -56,7 +56,8 @@ jobs:
- name: Push to Release
uses: ncipollo/release-action@v1
with:
artifacts: "whisper-x86_64.dmg,build/ios/iphoneos/app.ipa"
# artifacts: "whisper-x86_64.dmg,build/ios/iphoneos/app.ipa"
artifacts: "whisper-x86_64.dmg"
tag: ${{ github.ref_name }}
token: ${{ secrets.TOKEN }}
allowUpdates: true
Expand Down

0 comments on commit 0b1cbcf

Please sign in to comment.