We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d97e208 commit 09887f3Copy full SHA for 09887f3
1 file changed
.github/workflows/build.yaml
@@ -28,6 +28,8 @@ on:
28
branches:
29
- main
30
- release/*
31
+ workflow_dispatch:
32
+ # no options
33
34
env:
35
# Minimize noise from dotnet CLI
@@ -60,15 +62,15 @@ jobs:
60
62
-p:RepositoryCommit=${{ github.sha }}
61
63
-p:PackageOutputPath=${{ runner.temp }}/dist
64
- - name: Save NuGet Package
65
+ - name: Save Package
66
uses: actions/upload-artifact@v2
67
#url: https://github.com/actions/upload-artifact
68
with:
69
name: Packages
70
path: ${{ runner.temp }}/dist
71
if-no-files-found: error
72
- - name: Publish NuGet Package
73
+ - name: Publish Package
74
if: startsWith(github.ref, 'refs/tags/release/')
75
shell: pwsh
76
run: >
0 commit comments