We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c06bb7d commit 7825d13Copy full SHA for 7825d13
1 file changed
.github/workflows/release.yml
@@ -189,10 +189,11 @@ jobs:
189
run: |
190
VERSION="${{ steps.release.outputs.version }}"
191
PRERELEASE_VERSION="${VERSION}-preview.${{ github.run_number }}"
192
- sed -i "s|<Version>.*</Version>|<Version>${PRERELEASE_VERSION}</Version>|" Directory.Build.props
193
rm dist/packages/*.nupkg
194
- pnpm nx run-many -t pack
195
- sed -i "s|<Version>.*</Version>|<Version>${VERSION}</Version>|" Directory.Build.props
+ dotnet pack Flowthru.slnx \
+ --no-build \
+ -c Release \
196
+ /p:Version="${PRERELEASE_VERSION}"
197
dotnet nuget push "dist/packages/*.nupkg" \
198
--api-key "${FLOWTHRU_NUGET_API_KEY}" \
199
--source https://api.nuget.org/v3/index.json \
0 commit comments