Skip to content

Commit

Permalink
Use other syntaxy for env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
selmaohneh-draeger committed Dec 11, 2023
1 parent 2897cff commit 6d6284b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ jobs:
dotnet-version: '6.0.x'

- name: Restore Dependencies
run: dotnet restore ${{ ProjectBasePath }}.${{ matrix.project }}
run: dotnet restore $ProjectBasePath.${{ matrix.project }}

- name: Build
run: dotnet build --configuration Release --no-restore ${{ ProjectBasePath }}.${{ matrix.project }}
run: dotnet build --configuration Release --no-restore $ProjectBasePath.${{ matrix.project }}

- name: Test
run: dotnet test --no-restore --verbosity normal ${{ ProjectBasePath }}.${{ matrix.project }}
run: dotnet test --no-restore --verbosity normal $ProjectBasePath.${{ matrix.project }}

- name: Publish
run: dotnet publish --configuration Release --no-build --output ./publish ${{ ProjectBasePath }}.${{ matrix.project }}
run: dotnet publish --configuration Release --no-build --output ./publish $ProjectBasePath.${{ matrix.project }}

- name: Create ZIP
run: |
Expand Down

0 comments on commit 6d6284b

Please sign in to comment.