1
0
Fork 0
mirror of https://github.com/subosito/flutter-action.git synced 2024-08-16 10:19:50 +02:00

action.yaml: reduce number of arguments in the last invocation

This commit is contained in:
Bartek Pacia 2024-04-01 03:44:42 +02:00
parent 72d56ba498
commit 3061b99ad9
No known key found for this signature in database

View file

@ -50,9 +50,6 @@ outputs:
VERSION: VERSION:
value: "${{ steps.flutter-action.outputs.VERSION }}" value: "${{ steps.flutter-action.outputs.VERSION }}"
description: The selected Flutter version description: The selected Flutter version
VERSION_FILE:
value: "${{ steps.flutter-action.outputs.VERSION_FILE }}"
description: The pubspec.yaml file with exact Flutter version defined
ARCHITECTURE: ARCHITECTURE:
value: "${{ steps.flutter-action.outputs.ARCHITECTURE }}" value: "${{ steps.flutter-action.outputs.ARCHITECTURE }}"
description: The selected Flutter CPU architecture description: The selected Flutter CPU architecture
@ -114,7 +111,6 @@ runs:
run: | run: |
$GITHUB_ACTION_PATH/setup.sh \ $GITHUB_ACTION_PATH/setup.sh \
-n '${{ steps.flutter-action.outputs.VERSION }}' \ -n '${{ steps.flutter-action.outputs.VERSION }}' \
-f '${{ steps.flutter-action.outputs.VERSION_FILE }}' \
-a '${{ steps.flutter-action.outputs.ARCHITECTURE }}' \ -a '${{ steps.flutter-action.outputs.ARCHITECTURE }}' \
-c '${{ steps.flutter-action.outputs.CACHE-PATH }}' \ -c '${{ steps.flutter-action.outputs.CACHE-PATH }}' \
${{ steps.flutter-action.outputs.CHANNEL }} ${{ steps.flutter-action.outputs.CHANNEL }}