Skip to content

Commit 2bee26a

Browse files
authored
Update ci.yml back to bash environment variable syntax
1 parent b58346a commit 2bee26a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
dotnet-version: '8.0.x'
2929

3030
- name: Restore dependencies
31-
run: dotnet restore $env:SOLUTION
31+
run: dotnet restore $SOLUTION
3232

3333
- name: Build
34-
run: dotnet build $env:SOLUTION --configuration $env:BUILD_CONFIG --no-restore
34+
run: dotnet build $SOLUTION --configuration $BUILD_CONFIG --no-restore
3535

3636
- name: Run tests
37-
run: dotnet test --configuration $env:BUILD_CONFIG --no-restore --no-build --verbosity normal
37+
run: dotnet test --configuration $BUILD_CONFIG --no-restore --no-build --verbosity normal

0 commit comments

Comments
 (0)