Skip to content

Commit

Permalink
try pwsh notation
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof Kaczorowski committed Jul 19, 2023
1 parent 07ec7f2 commit 58c967f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ jobs:
useConfigFile: true
- name: Fetch GitVersion
run: |
echo "MY_VERSION=${{ steps.gitversion.outputs.MajorMinorPatch }}" >> GITHUB_ENV
echo "Version=${{ steps.gitversion.outputs.MajorMinorPatch }}" >> $GITHUB_ENV
echo "VERSION=${{ steps.gitversion.outputs.MajorMinorPatch }}" >> $GITHUB_ENV
echo "MY_VERSION=${{ steps.gitversion.outputs.MajorMinorPatch }}" >> $env:GITHUB_ENV
echo "Version=${{ steps.gitversion.outputs.MajorMinorPatch }}" >> $env:GITHUB_ENV
echo "VERSION=${{ steps.gitversion.outputs.MajorMinorPatch }}" >> $env:GITHUB_ENV
- name: 🏗️ build
run: dotnet build ./src/${{ env.Namespace }}.${{ matrix.package_module }}.sln
env:
Expand Down

0 comments on commit 58c967f

Please sign in to comment.