Skip to content

Commit 6dcf8e9

Browse files
ci: updated action scripts to use new path.
1 parent d5f28ae commit 6dcf8e9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/scripts/install-flutter.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ then
1010
fi
1111

1212
git clone https://github.com/flutter/flutter.git --depth 1 -b $BRANCH _flutter
13-
echo "::add-path::$GITHUB_WORKSPACE/_flutter/bin"
13+
echo "$GITHUB_WORKSPACE/_flutter/bin" >> $GITHUB_PATH
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

33
flutter pub global activate melos
4-
echo "::add-path::$HOME/.pub-cache/bin"
5-
echo "::add-path::$GITHUB_WORKSPACE/_flutter/.pub-cache/bin"
6-
echo "::add-path::$GITHUB_WORKSPACE/_flutter/bin/cache/dart-sdk/bin"
4+
echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH
5+
echo "$GITHUB_WORKSPACE/_flutter/.pub-cache/bin" >> $GITHUB_PATH
6+
echo "$GITHUB_WORKSPACE/_flutter/bin/cache/dart-sdk/bin" >> $GITHUB_PATH

0 commit comments

Comments
 (0)