From 5f6b0b19d51454f2a989d2243e55c9a40fe9e992 Mon Sep 17 00:00:00 2001 From: Dante291 Date: Thu, 30 Nov 2023 12:17:09 +0530 Subject: [PATCH] CI/CD --- .github/workflows/ios_build.yml | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ios_build.yml b/.github/workflows/ios_build.yml index 6759942..5bfcebe 100644 --- a/.github/workflows/ios_build.yml +++ b/.github/workflows/ios_build.yml @@ -24,6 +24,12 @@ jobs: - name: Build iOS App run: flutter build ios --release --no-codesign + - name: Upload Artifact + uses: actions/upload-artifact@v2 + with: + name: ios-build + path: build/ios/iphoneos/Runner.app + release: needs: build runs-on: ubuntu-latest @@ -35,10 +41,20 @@ jobs: name: ios-build path: build/ios - - name: Set up Git - run: git config --global user.email "actions@github.com" && git config --global user.name "GitHub Actions" - - name: Create Release - run: | - TAG_NAME="v${{ github.run_number }}" - gh release create $TAG_NAME ./build/ios/Runner.app --title "iOS App Release" --notes "This is an automated release, triggered by a recent push. This may or may not be stable, so please have a look at the stable release(s)." \ No newline at end of file + id: create_release + uses: actions/create-release@v1 + with: + tag_name: ${{ github.run_number }} + release_name: Release ${{ github.run_number }} + draft: false + prerelease: false + + - name: Upload Release Asset + id: upload-release-asset + uses: actions/upload-release-asset@v1 + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./build/ios/iphoneos/Runner.app.zip + asset_name: ios-app.zip + asset_content_type: application/zip