Skip to content

Commit

Permalink
fix: Adjust assembly name rename (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed Feb 25, 2022
1 parent fc436ca commit f70d6dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Adjust msbuild task name
run: |
cd src
gci -r -File -Include *.cs,*.targets,*.props | foreach-object { $a = $_.fullname; ( get-content $a ) | foreach-object { $_ -replace "v0","${{ steps.gitversion.outputs.VersionSourceSha }}" } | set-content $a }
gci -r -File -Include *.cs,*.targets,*.props,*.csproj | foreach-object { $a = $_.fullname; ( get-content $a ) | foreach-object { $_ -replace "v0","${{ steps.gitversion.outputs.VersionSourceSha }}" } | set-content $a }
- name: Build - CI
run: |
Expand Down

0 comments on commit f70d6dd

Please sign in to comment.