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

add PUBCACHE

This commit is contained in:
Alif Rachmawadi 2022-01-06 08:48:07 +00:00
parent 23835ee500
commit a7e6ec0df9
No known key found for this signature in database
GPG key ID: DD1F490C879BFA91
2 changed files with 8 additions and 0 deletions

View file

@ -17,6 +17,9 @@ jobs:
- name: Print FLUTTER_ROOT
shell: bash
run: echo "FLUTTER_ROOT set to $FLUTTER_ROOT"
- name: Print PUBCACHE
shell: bash
run: echo "PUBCACHE set to $PUBCACHE"
- name: Run dart --version
shell: bash
run: dart --version

View file

@ -78,10 +78,15 @@ download_archive "$ARCHIVE_PATH" "$RUNNER_TOOL_CACHE"
if [[ $OS_NAME == windows ]]; then
FLUTTER_ROOT="${RUNNER_TOOL_CACHE}\\flutter"
PUBCACHE="${USERPROFILE}\\.pub-cache"
else
FLUTTER_ROOT="${RUNNER_TOOL_CACHE}/flutter"
PUBCACHE="${HOME}/.pub-cache"
fi
echo "FLUTTER_ROOT=${FLUTTER_ROOT}" >>$GITHUB_ENV
echo "PUB_CACHE=${PUBCACHE}" >>$GITHUB_ENV
echo "${FLUTTER_ROOT}/bin" >>$GITHUB_PATH
echo "${FLUTTER_ROOT}/bin/cache/dart-sdk/bin" >>$GITHUB_PATH
echo "${PUBCACHE}/bin" >>$GITHUB_PATH