We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e830a43 commit fa40352Copy full SHA for fa40352
1 file changed
.github/workflows/flutter-ci.yml
@@ -181,7 +181,9 @@ jobs:
181
182
- name: Get build number from git
183
id: get_build_number
184
- run: echo "build_number=$(git rev-list --count HEAD)" >> $GITHUB_OUTPUT
+ run: |
185
+ $count = git rev-list --count HEAD
186
+ echo "build_number=$count" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
187
188
- name: Setup Flutter
189
uses: subosito/flutter-action@v2
0 commit comments