Skip to content

Commit 475d70b

Browse files
committed
Fix syntax
1 parent f26d8b0 commit 475d70b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/android-release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,10 @@ jobs:
4646
run: flutter pub get
4747

4848
- name: Extract version information
49-
id: get_version
5049
run: |
51-
echo "VERSION_V=$(echo $GITHUB_REF | cut -d / -f 3) >> $GITHUB_ENV
52-
echo "VERSION=$(echo $GITHUB_REF | cut -d / -f 3 | cut -c 2-) >> $GITHUB_ENV
53-
echo "BUILD=$(flutter pub run cider version | cut -d '+' -f 2) >> $GITHUB_ENV
50+
echo "VERSION_V=$(echo $GITHUB_REF | cut -d / -f 3)" >> $GITHUB_ENV
51+
echo "VERSION=$(echo $GITHUB_REF | cut -d / -f 3 | cut -c 2-)" >> $GITHUB_ENV
52+
echo "BUILD=$(flutter pub run cider version | cut -d '+' -f 2)" >> $GITHUB_ENV
5453
5554
# Note: the original tag that triggered the workflow is in the form vX.Y.Z
5655
# but the pubspec.yaml is committed in the commit after that one.

0 commit comments

Comments
 (0)