build(deps): bump widgetbook_annotation from 3.9.0 to 3.10.0 #165
Workflow file for this run
This file contains hidden or 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: Upload production android app | |
| on: | |
| pull_request: | |
| types: [closed] | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| deploy-app: | |
| name: Upload production app (android) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| if: github.event_name == 'workflow_dispatch' || (github.event.pull_request.merged == true && contains(github.head_ref, 'release/')) | |
| env: | |
| SERVICE_ACCOUNT_JSON: ${{ secrets.SERVICE_ACCOUNT_JSON }} | |
| UPLOAD_KEYSTORE_JKS: ${{ secrets.UPLOAD_KEYSTORE_JKS }} | |
| STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }} | |
| KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
| KEY_ALIAS: ${{ secrets.KEY_ALIAS }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Flutter with FVM | |
| uses: kuhnroyal/flutter-fvm-config-action/setup@v3 | |
| - name: Upload android app | |
| uses: ./.github/actions/upload_android_app | |
| with: | |
| working-directory: ./packages/flutter_app | |
| flavor: prod | |
| package-name: jp.co.altive.fat | |
| release-track: internal | |
| service-account-json: ${{ env.SERVICE_ACCOUNT_JSON }} | |
| upload-keystore-jks: ${{ env.UPLOAD_KEYSTORE_JKS }} | |
| store-password: ${{ env.STORE_PASSWORD }} | |
| key-password: ${{ env.KEY_PASSWORD }} | |
| key-alias: ${{ env.KEY_ALIAS }} |