Skip to content

Commit

Permalink
fix: updated main workflow and github releases
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharlock10 committed Mar 11, 2024
1 parent 7cf612a commit 33573af
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 32 deletions.
114 changes: 85 additions & 29 deletions .github/workflows/prod-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ on:
push:
branches:
- main
pull_request:
branches:
- main

env:
flutter_version: "3.19.3"
Expand Down Expand Up @@ -53,30 +50,11 @@ jobs:
- name: Build apk
run: flutter build apk --release --build-number=${{ github.run_number }}

# Run below tasks only if its a push
- name: Get flutter version
if: ${{ github.event_name == 'push' }}
id: flutter_version
uses: NiklasLehnfeld/flutter-version-number-action@main
with:
file-path: ./pubspec.yaml

- name: Bump version and push tag
if: ${{ github.event_name == 'push' }}
id: tag_version
uses: mathieudutour/[email protected]
- name: Upload apk
uses: actions/upload-artifact@v4
with:
custom_tag: ${{ steps.flutter_version.outputs.version-number }}
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Create a GitHub release
if: ${{ github.event_name == 'push' }}
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
artifacts: "./build/app/outputs/flutter-apk/app-release.apk"
name: app-release.apk
path: ./build/app/outputs/flutter-apk/app-release.apk

build-bundle:
name: "build bundle 🛠️"
Expand Down Expand Up @@ -128,17 +106,95 @@ jobs:
- name: Build bundle
run: flutter build appbundle --release --build-number=${{ github.run_number }}

# Run the below tasks only if its a push
- name: Get release notes
if: ${{ github.event_name == 'push' }}
run: git log -1 --pretty="PRODUCTION BUILD - Commit %h%n- Date %cs%n- %s" > release_notes.txt

- name: Upload bundle to app distribution
if: ${{ github.event_name == 'push' }}
uses: wzieba/[email protected]
with:
appId: 1:280154424805:android:06755c7776c617c0aa1b0c
serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
groups: Developers
releaseNotesFile: ./release_notes.txt
file: ./build/app/outputs/bundle/release/app-release.aab

- name: Upload bundle
uses: actions/upload-artifact@v4
with:
name: app-release.aab
path: ./build/app/outputs/bundle/release/app-release.aab

build-web:
name: "build web 🌐"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.PE_PRIVATE_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.PE_PRIVATE_AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.PE_AWS_REGION }}

- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: ${{ env.flutter_version }}

- name: Get dependencies
run: flutter pub get

- name: Flutter version
run: flutter --version

- name: Build web
run: flutter build web --release --build-number=${{ github.run_number }}

- name: Deploy to S3
run: aws s3 sync ./build/web/ s3://${{ secrets.PE_WEB_BUCKET_NAME }}/ --delete

- name: Create zip archive
run: zip -r web.zip ./build/web/

- name: Upload web
uses: actions/upload-artifact@v4
with:
name: web.zip
path: ./web.zip

create-release:
name: "create release 📦"
needs: [build-apk, build-bundle, build-web]
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: ./artifacts

- name: Get flutter version
id: flutter_version
uses: NiklasLehnfeld/flutter-version-number-action@main
with:
file-path: ./pubspec.yaml

- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
custom_tag: ${{ steps.flutter_version.outputs.version-number }}
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
artifacts: |
./artifacts/app-release.apk,
./artifacts/app-release.aab,
./artifacts/web.zip
3 changes: 0 additions & 3 deletions .github/workflows/staging-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ on:
push:
branches:
- develop
pull_request:
branches:
- develop

env:
flutter_version: "3.19.3"
Expand Down

0 comments on commit 33573af

Please sign in to comment.