Skip to content

Commit 3f1c14a

Browse files
wip
1 parent 74b348d commit 3f1c14a

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/build-sample-app-for-sdk-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
build-sample-apps:
9-
uses: ./.github/workflows/reusable_build_sample_apps.yml
9+
uses: ./.github/workflows/reusable-build-sample-apps.yml
1010
with:
1111
use_latest_sdk_version: true
1212
secrets: inherit

.github/workflows/build-sample-apps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
build-sample-apps:
5050
if: ${{ always() }} # do not skip running this step if update-pr-comment does not run
5151
needs: [ update-pr-comment ] # wait for PR comment to be created saying new builds are being made.
52-
uses: ./.github/workflows/reusable_build_sample_apps.yml
52+
uses: ./.github/workflows/reusable-build-sample-apps.yml
5353
with:
5454
use_latest_sdk_version: false
5555
secrets: inherit
@@ -60,7 +60,7 @@ jobs:
6060
runs-on: ubuntu-latest
6161
permissions:
6262
pull-requests: write # to be able to comment on PR
63-
steps:
63+
steps:
6464
- name: Update sample builds PR comment with build information
6565
if: ${{ needs.build-sample-apps.result == 'success' }}
6666
uses: peter-evans/create-or-update-comment@v4

.github/workflows/reusable-build-sample-apps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
required: false
1010
default: false
1111

12-
build-android-sample-apps:
12+
build-android-sample-app:
1313
strategy:
1414
fail-fast: false # if one sample app fails to build, let the other sample apps continue to build and not cancel them.
1515
matrix: # Use a matrix allowing us to build multiple apps in parallel. Just add an entry to the matrix and it will build!
@@ -147,7 +147,7 @@ on:
147147
FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT_CREDS_B64: ${{ secrets.FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT_CREDS_B64 }}
148148
continue-on-error: true # continue to build iOS app even if Android build fails
149149

150-
build-ios-sample-apps:
150+
build-ios-sample-app:
151151
strategy:
152152
fail-fast: false # if one sample app fails to build, let the other sample apps continue to build and not cancel them.
153153
matrix: # Use a matrix allowing us to build multiple apps in parallel. Just add an entry to the matrix and it will build!

apps/amiapp_flutter/scripts/update_sample_app_sdk_version.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// ignore_for_file: avoid_print
12
import 'dart:io';
23
import 'package:dotenv/dotenv.dart';
34
import 'package:path/path.dart' as path;

0 commit comments

Comments
 (0)