1 parent cab67c2 commit 3eb4bcaCopy full SHA for 3eb4bca
1 file changed
.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: |
+ ls -aR ./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"
0 commit comments