Flutter Build #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 1.Flutter Build | |
on: workflow_dispatch | |
permissions: write-all | |
env: | |
flutter_version: '3.19.6' | |
jobs: | |
build_android: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Change version info | |
run: | | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
python3 ./build-tools/addBuildNumber.py ${{ github.server_url }} ${{ github.repository }} ${{ github.run_id }} ${{ github.run_attempt }} | |
- name: Install JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.flutter_version }} | |
channel: stable | |
cache: true | |
- name: Setup Flutter | |
run: | | |
flutter config --no-cli-animations | |
- name: Build APK | |
run: | | |
flutter build apk --target-platform android-arm64,android-arm | |
- name: Sign APK | |
uses: r0adkll/sign-android-release@v1 | |
with: | |
releaseDirectory: build/app/outputs/flutter-apk | |
signingKeyBase64: ${{ secrets.APK_SIGN_JKS_BASE64 }} | |
alias: ${{ secrets.APK_SIGN_ALIAS }} | |
keyStorePassword: ${{ secrets.APK_SIGN_PASS }} | |
keyPassword: ${{ secrets.APK_SIGN_ALIAS_PASS }} | |
env: | |
BUILD_TOOLS_VERSION: "30.0.3" | |
- name: Get Git info | |
id: get_git_info | |
run: | | |
git fetch --tags | |
echo "RESOLVED_VERSION="$(git tag --sort=-v:refname | head -n 1) >> "$GITHUB_OUTPUT" | |
- name: Rename APK file | |
run: | | |
mkdir -p build/upload-artifacts/ | |
mv build/app/outputs/flutter-apk/app-release-signed.apk build/upload-artifacts/SITLife-${{ steps.get_git_info.outputs.RESOLVED_VERSION }}.apk | |
- name: Publish Android Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: SITLife-Android-release | |
path: build/upload-artifacts/SITLife-${{ steps.get_git_info.outputs.RESOLVED_VERSION }}.apk | |
build_ios: | |
runs-on: macos-14 # macos-latest is macos-12 actually, and iOS 17+ SDK not supported | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Change version info | |
run: | | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
python3 ./build-tools/addBuildNumber.py ${{ github.server_url }} ${{ github.repository }} ${{ github.run_id }} ${{ github.run_attempt }} | |
- name: Change Develop to Distribution | |
run: | | |
python3 ./build-tools/toDistribution.py | |
- name: Install Apple Certificate | |
uses: apple-actions/import-codesign-certs@v2 | |
with: | |
p12-file-base64: ${{ secrets.P12_BASE64 }} | |
p12-password: ${{ secrets.P12_PASSWORD }} | |
- name: Install the provisioning profile | |
env: | |
PROVISIONING_CERTIFICATE_BASE64: ${{ secrets.PROVISIONING_PROFILE_BASE64 }} | |
run: | | |
PP_PATH=$RUNNER_TEMP/build_pp.mobileprovision | |
echo -n "$PROVISIONING_CERTIFICATE_BASE64" | base64 --decode --output $PP_PATH | |
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles | |
cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.flutter_version }} | |
channel: stable | |
cache: true | |
- name: Setup Flutter | |
run: | | |
flutter config --no-cli-animations | |
- name: Build iOS | |
run: | | |
flutter build ios --release --no-codesign | |
- name: Build resolve Swift dependencies | |
run: | | |
xcodebuild -resolvePackageDependencies -workspace ios/Runner.xcworkspace -scheme Runner -configuration Release | |
- name: Build xArchive | |
run: | | |
xcodebuild -workspace ios/Runner.xcworkspace -scheme Runner -configuration Release DEVELOPMENT_TEAM="M5APZD5CKA" -sdk 'iphoneos' -destination 'generic/platform=iOS' -archivePath build-output/app.xcarchive PROVISIONING_PROFILE="eb8b1f5f-3329-42a5-a18f-8254a2e85b41" clean archive CODE_SIGN_IDENTITY="Apple Distribution: ziqi wei" | |
- name: Export ipa | |
run: | | |
xcodebuild -exportArchive -archivePath build-output/app.xcarchive -exportPath build-output/ios -exportOptionsPlist ios/ExportOptions.plist | |
- name: Get Git info | |
id: get_git_info | |
run: | | |
git fetch --tags | |
echo "RESOLVED_VERSION="$(git tag --sort=-v:refname | head -n 1) >> "$GITHUB_OUTPUT" | |
- name: Rename ipa file | |
run: | | |
mkdir -p build/upload-artifacts/ | |
mv build-output/ios/life.mysit.SITLife.ipa build/upload-artifacts/SITLife-${{ steps.get_git_info.outputs.RESOLVED_VERSION }}.ipa | |
- name: Publish iOS Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: SITLife-iOS-release | |
path: build/upload-artifacts/SITLife-${{ steps.get_git_info.outputs.RESOLVED_VERSION }}.ipa | |
after_build: | |
runs-on: macos-latest | |
needs: [build_android, build_ios] | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Change version info | |
run: | | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
python3 ./build-tools/addBuildNumber.py ${{ github.server_url }} ${{ github.repository }} ${{ github.run_id }} ${{ github.run_attempt }} | |
- name: Get Git info | |
id: get_git_info | |
run: | | |
git fetch --tags | |
echo "RESOLVED_VERSION="$(git tag --sort=-v:refname | head -n 1) >> "$GITHUB_OUTPUT" | |
- name: Get iOS Artifact | |
if: github.repository == 'liplum-dev/mimir' | |
uses: actions/download-artifact@v4 | |
with: | |
name: SITLife-iOS-release | |
path: build/ | |
- name: Deploy to App Store (TestFlight) | |
if: github.repository == 'liplum-dev/mimir' | |
uses: apple-actions/upload-testflight-build@v1 | |
with: | |
app-path: ${{ github.workspace }}/build/SITLife-${{ steps.get_git_info.outputs.RESOLVED_VERSION }}.ipa | |
issuer-id: ${{ secrets.APP_STORE_CONNECT_ISSUER_ID }} | |
api-key-id: ${{ secrets.APP_STORE_CONNECT_API_KEY_ID }} | |
api-private-key: ${{ secrets.APP_STORE_CONNECT_API_PRIVATE_KEY }} | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
branch: ${{ github.ref }} | |
- name: Send Message to Group | |
continue-on-error: true | |
run: | | |
curl -G -s --connect-timeout 5 ${{ secrets.gocq_sendgroupmsg_url }} --data-urlencode "group_id=${{ secrets.gocq_group_number }}" --data-urlencode "message=新测试版(${{ steps.get_git_info.outputs.RESOLVED_VERSION }})已完成构建,请通过Github Actions下载。或等待开发者操作完成后,前往群文件/TestFlight下载。" |