Skip to content

Commit

Permalink
Use env files
Browse files Browse the repository at this point in the history
  • Loading branch information
passsy committed Jul 27, 2024
1 parent 91000c8 commit 292b384
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ jobs:
- name: Add Dart SDK to PATH
shell: powershell
run: |
$dartSdkPath = "C:\tools\dart-sdk\bin"
echo "::add-path::$dartSdkPath"
$dartSdkPath = "C:\\tools\\dart-sdk\\bin"
echo $dartSdkPath | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Dart version
run: dart --version
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
- name: Add Dart SDK to PATH
shell: powershell
run: |
$dartSdkPath = "C:\tools\dart-sdk\bin"
echo "::add-path::$dartSdkPath"
$dartSdkPath = "C:\\tools\\dart-sdk\\bin"
echo $dartSdkPath | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- uses: actions/checkout@v1
- name: Install dependencies sidekick_core
run: cd sidekick_core && dart pub get --no-precompile
Expand Down

0 comments on commit 292b384

Please sign in to comment.