Skip to content

Commit

Permalink
feature: updated version and workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
efraespada committed Nov 8, 2024
1 parent ad613cd commit 90ebd8f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/push_checks_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,12 @@ jobs:
id: read_version
shell: cmd
run: |
for /f "tokens=2 delims= " %%a in ('findstr "^version: " pubspec.yaml') do set VERSION=%%a
echo VERSION=%VERSION% >> %GITHUB_ENV%
setlocal enabledelayedexpansion
for /f "tokens=2 delims= " %%a in ('findstr "^version: " pubspec.yaml') do (
set VERSION=%%a
)
echo VERSION=!VERSION! >> %GITHUB_ENV%
endlocal
- name: Get dependencies
working-directory: zstandard_windows
Expand Down

0 comments on commit 90ebd8f

Please sign in to comment.