Skip to content

Commit

Permalink
export and archive
Browse files Browse the repository at this point in the history
  • Loading branch information
Grodien committed Jul 31, 2024
1 parent 5458157 commit db101c1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/flutter_ios_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,16 @@ jobs:
- run: flutter build ios --flavor dev -t lib/main_dev.dart --release
- run: flutter build ios --flavor inte -t lib/main_inte.dart --release
- run: flutter build ios --flavor prod -t lib/main_prod.dart --release
- run: xcodebuild -exportArchive -archivePath "build/ios/iphoneos/DAS Dev.app" -exportPath "build/ios/ipa/" -exportOptionsPlist ios/exportOptionsRelease.plist
- name: Archive Apps
uses: actions/upload-artifact@v4
with:
name: App
path: build/ios/iphoneos/**
retention-days: 1
- name: Archive IPA
uses: actions/upload-artifact@v4
with:
name: IPA
path: build/ios/ipa/**
retention-days: 1
8 changes: 8 additions & 0 deletions das_client/ios/exportOptionsRelease.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>method</key>
<string>app-store</string>
</dict>
</plist>

0 comments on commit db101c1

Please sign in to comment.