From ca359b33725370eab9f9662a37837994f699179f Mon Sep 17 00:00:00 2001 From: Nate Brown Date: Fri, 12 Aug 2022 16:16:34 -0500 Subject: [PATCH] Build/release ios and android --- .github/workflows/release.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..9262533 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,30 @@ +name: Create release and upload to Apple and Google +on: + # push: + # tags: + # - 'v[0-9]+.[0-9]+.[0-9]*' + pull_request: + +jobs: + build: + name: Build ios and android package + runs-on: macos-latest + steps: + + - name: Install flutter + uses: subosito/flutter-action@v1 + with: + flutter-version: '2.8.1' + + - name: Check out code + uses: actions/checkout@v2 + + - name: get build name and number + run: | + #BUILD=${GITHUB_REF#refs/tags/v} + BUILD="0.0.99+10" + export BUILD_NAME="${BUILD%+*}" + export BUILD_NUMBER="${BUILD##*+}" + + - name: build ios + run: flutter build ipa --build-name "$BUILD_NAME" --build-number "$BUILD_NUMBER"