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 72d6c35 commit c41ee61Copy full SHA for c41ee61
.github/workflows/publish.yml
@@ -13,8 +13,10 @@ jobs:
13
14
steps:
15
16
+ - run: echo github.event.head_commit.message: ${{ github.event.head_commit.message }}
17
+
18
- name: No publish loop
- if: contains( github.event.head_commit, '***NO_CI***')
19
+ if: contains( github.event.head_commit.message, '***NO_CI***')
20
run: exit 123
21
22
- uses: actions/checkout@v1
@@ -63,4 +65,5 @@ jobs:
63
65
run: nuget sources add -name nugetfeed -source ${{ secrets.NUGET_FEED }} -username anything -password ${{ secrets.NUGET_AUTH }}
64
66
67
- name: Publish NuGet
- run: for %i in (${{ runner.temp }}\final\*.nupkg) do nuget push %i -Source ${{ secrets.NUGET_FEED }}
68
+ run: |
69
+ for %%i in (${{ runner.temp }}\final\*.nupkg) do nuget push %%i -Source ${{ secrets.NUGET_FEED }}
0 commit comments