We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cab67c2 commit f9008e3Copy full SHA for f9008e3
.github/workflows/dotnetcore.yml
@@ -24,10 +24,11 @@ jobs:
24
25
- name: Run tests
26
run: dotnet test ./src/ServiceBus.AttachmentPlugin.sln --configuration Release --no-restore --verbosity normal
27
-# Deploy:
28
-# needs: [BuildAndTest]
29
-# runs-on: windows-latest
30
-# steps:
31
-# - shell: cmd
32
-# run:
33
-# echo deploying...
+
+ - shell: bash
+ name: Deploy
+ run: |
+ tree -aC ./src
+ nuget source Add -Name "GitHub" -Source "https://nuget.pkg.github.com/SeanFeldman/ServiceBus.AttachmentPlugin/index.json" -UserName SeanFeldman
+ nuget pack
34
+ nuget push "ServiceBus.AttachmentPlugin.0.0.1.nupkg" -Source "GitHub" #.src/ServiceBus.AttachmentPlugin/nugets/ServiceBus.AttachmentPlugin.6.2.0.nupkg
0 commit comments