We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cab67c2 commit 4e6fbf3Copy full SHA for 4e6fbf3
.github/workflows/dotnetcore.yml
@@ -24,10 +24,14 @@ 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...
+# Deploy:
+# needs: [BuildAndTest]
+# runs-on: windows-latest
+# steps:
+ - name: Deploy
+ - shell: bash
+ run: |
34
+ ls -aR ./src
35
+ nuget source Add -Name "GitHub" -Source "https://nuget.pkg.github.com/SeanFeldman/ServiceBus.AttachmentPlugin/index.json" -UserName SeanFeldman
36
+ nuget pack
37
+ nuget push "ServiceBus.AttachmentPlugin.0.0.1.nupkg" -Source "GitHub"
0 commit comments