Skip to content

Commit

Permalink
Passing flutter version as input
Browse files Browse the repository at this point in the history
  • Loading branch information
pmathew92 committed Oct 29, 2024
1 parent 5b06d25 commit bc2e74a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-af.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
rl-scanner:
uses: ./.github/workflows/rl-scanner.yml
with:
flutter: '3.x'
flutter: ${{ env.flutter }}
artifact-name: 'flutter-auth0-package.zip'
secrets:
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-afpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
rl-scanner:
uses: ./.github/workflows/rl-scanner.yml
with:
flutter: '3.x'
flutter: ${{ env.flutter }}
artifact-name: 'flutter-auth0-package.zip'
secrets:
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rl-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: RL-Secure-Workflow
on:
workflow_call:
inputs:
flutter-version:
flutter:
required: true
type: string
artifact-name:
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Set up Flutter
uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225
with:
flutter-version: ${{ inputs.flutter-version }}
flutter-version: ${{ inputs.flutter }}
channel: stable
cache: true

Expand Down

0 comments on commit bc2e74a

Please sign in to comment.