Skip to content

Commit

Permalink
chore(ci): rename all files to match the new naming convention (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
vareversat authored Mar 18, 2024
1 parent bb17f9c commit 66f4ac5
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:

jobs:
flutter-test-analyze:
uses: ./.github/workflows/flutter.analyze-test.action.yaml
uses: ./.github/workflows/action.flutter.analyze-test.yaml
with:
flutter_version: '3.19.3'
secrets: inherit
flutter-build:
needs: [flutter-test-analyze]
uses: ./.github/workflows/flutter.build.action.yaml
needs: [ flutter-test-analyze ]
uses: ./.github/workflows/action.flutter.build.yaml
with:
flutter_version: '3.19.3'
android_output: 'apk'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/dev.yaml → .github/workflows/push.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ on:

jobs:
flutter-test-analyze:
uses: ./.github/workflows/flutter.analyze-test.action.yaml
uses: ./.github/workflows/action.flutter.analyze-test.yaml
with:
flutter_version: '3.19.3'
secrets: inherit
page:
uses: ./.github/workflows/pages.deploy.yaml
uses: ./.github/workflows/action.pages.deploy.yaml
flutter-build:
needs: [flutter-test-analyze]
uses: ./.github/workflows/flutter.build.action.yaml
needs: [ flutter-test-analyze ]
uses: ./.github/workflows/action.flutter.build.yaml
with:
flutter_version: '3.19.3'
android_output: 'aab'
env: 'dev'
secrets: inherit
fastlane-dry-run:
needs: [ flutter-build ]
uses: ./.github/workflows/fastlane.action.yaml
uses: ./.github/workflows/action.fastlane.yaml
with:
lane: 'dry_run'
secrets: inherit
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml → .github/workflows/push.main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ on:

jobs:
flutter-test-analyze:
uses: ./.github/workflows/flutter.analyze-test.action.yaml
uses: ./.github/workflows/action.flutter.analyze-test.yaml
with:
flutter_version: '3.19.3'
secrets: inherit
flutter-build:
needs: [flutter-test-analyze]
uses: ./.github/workflows/flutter.build.action.yaml
needs: [ flutter-test-analyze ]
uses: ./.github/workflows/action.flutter.build.yaml
with:
flutter_version: '3.19.3'
android_output: 'aab'
env: 'prd'
secrets: inherit
fastlane:
needs: [flutter-build]
uses: ./.github/workflows/fastlane.action.yaml
needs: [ flutter-build ]
uses: ./.github/workflows/action.fastlane.yaml
with:
lane: 'prd'
secrets: inherit
10 changes: 5 additions & 5 deletions .github/workflows/tag.yaml → .github/workflows/push.tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ on:

jobs:
flutter-test-analyze:
uses: ./.github/workflows/flutter.analyze-test.action.yaml
uses: ./.github/workflows/action.flutter.analyze-test.yaml
with:
flutter_version: '3.19.3'
secrets: inherit
flutter-build:
needs: [flutter-test-analyze]
uses: ./.github/workflows/flutter.build.action.yaml
needs: [ flutter-test-analyze ]
uses: ./.github/workflows/action.flutter.build.yaml
with:
flutter_version: '3.19.3'
android_output: 'aab'
Expand All @@ -23,8 +23,8 @@ jobs:
needs: [ flutter-build ]
uses: ./.github/workflows/action.release.yaml
fastlane:
needs: [flutter-build]
uses: ./.github/workflows/fastlane.action.yaml
needs: [ flutter-build ]
uses: ./.github/workflows/action.fastlane.yaml
with:
lane: 'beta'
secrets: inherit

0 comments on commit 66f4ac5

Please sign in to comment.