We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d94803 commit 5787ff6Copy full SHA for 5787ff6
1 file changed
.github/workflows/stage-5-publish.yaml
@@ -218,11 +218,18 @@ jobs:
218
TEST_NUGET_VERSION="$(echo $NUGET_VERSION | sed -E 's/.([^.]*)$/\1/')"
219
TEST_NUGET_VERSION="$(echo $TEST_NUGET_VERSION | sed -E 's/.([^.]*)$/\1/')"
220
echo $TEST_NUGET_VERSION
221
+ echo "TEST_NUGET_VERSION=$TEST_NUGET_VERSION" >> "$GITHUB_OUTPUT"
222
+ name: Set the nuget version
223
+ id: set-nuget-version
224
+
225
- run: |
226
dotnet nuget push \
227
nhsnotifysupplier.${TEST_NUGET_VERSION}.nupkg \
228
--source github \
- --api-key ${{ secrets.GITHUB_TOKEN }}
229
+ --api-key $GITHUB_TOKEN
230
+ env:
231
+ TEST_NUGET_VERSION: ${{ steps.set-nuget-version.outputs.TEST_NUGET_VERSION }}
232
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
233
234
### Publish NPM
235
0 commit comments