Skip to content

Commit

Permalink
Fix env for powershell
Browse files Browse the repository at this point in the history
  • Loading branch information
Lykoi18 committed Sep 7, 2023
1 parent 6e385ec commit c08267f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-aspnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:

- name: Clone devextreme-aspnet repo
run: |
BASE_BRANCH=$(node -p -e "require('./package.json').version.slice(0, 4).replace('.', '_')")
git clone -b $BASE_BRANCH --depth 1 https://github.com/devexpress/devextreme-aspnet ./devextreme-aspnet
$env:BASE_BRANCH=$(node -p -e "require('./package.json').version.slice(0, 4).replace('.', '_')")
git clone -b $env:BASE_BRANCH --depth 1 https://github.com/devexpress/devextreme-aspnet ./devextreme-aspnet
- name: Restore npm cache
uses: actions/cache@v3
Expand Down

0 comments on commit c08267f

Please sign in to comment.