mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-09-07 11:46:03 +00:00
Compare commits
2 commits
350bb0f62d
...
c24d9b0591
Author | SHA1 | Date | |
---|---|---|---|
|
c24d9b0591 | ||
|
a8303a166d |
5 changed files with 11 additions and 6 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -8,7 +8,7 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
name: Build ios and android package
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-15
|
||||
|
||||
steps:
|
||||
- name: Check out code
|
||||
|
|
4
.github/workflows/smoke.yml
vendored
4
.github/workflows/smoke.yml
vendored
|
@ -10,7 +10,7 @@ on:
|
|||
jobs:
|
||||
build-android:
|
||||
name: Android
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-15
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #4.2.2
|
||||
|
@ -85,7 +85,7 @@ jobs:
|
|||
|
||||
build-ios:
|
||||
name: iOS
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-15
|
||||
|
||||
steps:
|
||||
- name: Check out code
|
||||
|
|
2
.github/workflows/swiftfmt.yml
vendored
2
.github/workflows/swiftfmt.yml
vendored
|
@ -10,7 +10,7 @@ on:
|
|||
jobs:
|
||||
swiftfmt:
|
||||
name: Run swift format
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-15
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #4.2.2
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
Install all of the following things:
|
||||
|
||||
- [`xcode`](https://apps.apple.com/us/app/xcode/)
|
||||
- [`xcode`](https://apps.apple.com/us/app/xcode/) - use the version specified by `xcode_select` in `/ios/fastlane/Fastfile`
|
||||
- [`android-studio`](https://developer.android.com/studio)
|
||||
- [`flutter` 3.29.2](https://docs.flutter.dev/get-started/install)
|
||||
- [`gomobile`](https://pkg.go.dev/golang.org/x/mobile/cmd/gomobile)
|
||||
|
@ -59,4 +59,4 @@ Upload the android bundle to the google play store https://play.google.com/apps/
|
|||
|
||||
## iOS
|
||||
|
||||
In xcode, Release -> Archive then follow the directions to upload to the app store. If you have issues, https://flutter.dev/docs/deployment/ios#create-a-build-archive
|
||||
In xcode, Release -> Archive then follow the directions to upload to the app store. If you have issues, https://flutter.dev/docs/deployment/ios#create-a-build-archive
|
||||
|
|
|
@ -18,6 +18,11 @@ default_platform(:ios)
|
|||
platform :ios do
|
||||
desc "Push a new beta build to TestFlight"
|
||||
|
||||
before_all do
|
||||
xcode_select("/Applications/Xcode_16.3.0.app")
|
||||
end
|
||||
|
||||
|
||||
lane :build do
|
||||
# Do some things like setting up a temporary keystore to host secrets in CI
|
||||
setup_ci
|
||||
|
|
Loading…
Add table
Reference in a new issue