We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fad9d72 commit 7d8cd9eCopy full SHA for 7d8cd9e
1 file changed
.github/workflows/nuget-publish.yaml
@@ -6,7 +6,6 @@ on:
6
7
jobs:
8
publish:
9
- if: "! contains(toJSON(github.event.commits.*.message), '[no-release]')"
10
runs-on: ubuntu-latest
11
12
steps:
@@ -37,9 +36,11 @@ jobs:
37
36
run: dotnet pack ./OpenActive.NET/OpenActive.NET.csproj --configuration Release --include-source --no-build -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg
38
39
- name: Push to Nuget
+ if: "! contains(toJSON(github.event.commits.*.message), '[no-release]')"
40
run: dotnet nuget push "./OpenActive.NET/**/*.nupkg" -k ${{secrets.NUGET_API_KEY}} --skip-duplicate -s https://api.nuget.org/v3/index.json
41
42
- name: Create Release
43
44
id: create_release
45
uses: actions/create-release@v1
46
env:
0 commit comments