We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6c43af9 + bebc9e0 commit 1731a2eCopy full SHA for 1731a2e
.github/workflows/CD.yml
@@ -59,7 +59,8 @@ jobs:
59
60
- name: Prepare .nuspec
61
run: |
62
- $nuspec = Get-Content ThunderDesign.Net-PCL.nuspec.in
+ $nuspecPath = "$(Get-Location)\src\${{ env.FILE_NAME }}\ThunderDesign.Net-PCL.nuspec.in"
63
+ $nuspec = Get-Content $nuspecPath
64
$nuspec = $nuspec -replace '\$\{\{ env.FILE_NAME \}\}', '${{ env.FILE_NAME }}'
65
$nuspec = $nuspec -replace '\$\{\{ env.TITLE \}\}', '${{ env.TITLE }}'
66
$nuspec = $nuspec -replace '\$\{\{ env.DESCRIPTION \}\}', '${{ env.DESCRIPTION }}'
0 commit comments