Replace set-output with $GITHUB_OUTPUT; fixes #192 (#194)

* replace set-output with $GITHUB_OUTPUT

* use stdout for test mode

* update readme
This commit is contained in:
Alif Rachmawadi
2022-10-13 06:31:27 +07:00
committed by GitHub
parent 1e6ee87cb8
commit dbf1fa04f4
4 changed files with 43 additions and 30 deletions

View File

@@ -182,10 +182,10 @@ steps:
with:
channel: 'stable'
- run: |
echo cache-path=${{ steps.flutter-action.outputs.cache-path }}
echo cache-key=${{ steps.flutter-action.outputs.cache-key }}
echo channel=${{ steps.flutter-action.outputs.channel }}
echo version=${{ steps.flutter-action.outputs.version }}
echo architecture=${{ steps.flutter-action.outputs.architecture }}
echo CACHE-PATH=${{ steps.flutter-action.outputs.CACHE-PATH }}
echo CACHE-KEY=${{ steps.flutter-action.outputs.CACHE-KEY }}
echo CHANNEL=${{ steps.flutter-action.outputs.CHANNEL }}
echo VERSION=${{ steps.flutter-action.outputs.VERSION }}
echo ARCHITECTURE=${{ steps.flutter-action.outputs.ARCHITECTURE }}
shell: bash
```