@@ -19,37 +19,24 @@ jobs:
19
19
steps :
20
20
- uses : actions/checkout@v4
21
21
22
- # Publish
23
- - name : publish on version change
24
- id : publish_nuget
25
- uses : brandedoutcast/publish-nuget@v2
22
+ - name : NuGet Publisher
23
+
26
24
with :
27
25
# Filepath of the project to be packaged, relative to root of repository
28
26
PROJECT_FILE_PATH : Dandraka.FuzzySubstringSearch/Dandraka.FuzzySubstringSearch.csproj
29
-
30
27
# NuGet package id, used for version detection & defaults to project name
31
- # PACKAGE_NAME: Core
32
-
28
+ # PACKAGE_NAME: # optional
33
29
# Filepath with version info, relative to root of repository & defaults to PROJECT_FILE_PATH
34
- # VERSION_FILE_PATH: Directory.Build.props
35
-
30
+ # VERSION_FILE_PATH: # optional
36
31
# Regex pattern to extract version info in a capturing group
37
- # VERSION_REGEX: ^\s*<Version>(.*)<\/Version>\s*$
38
-
32
+ # VERSION_REGEX: # optional, default is ^\s*<Version>(.*)<\/Version>\s*$
39
33
# Useful with external providers like Nerdbank.GitVersioning, ignores VERSION_FILE_PATH & VERSION_REGEX
40
- # VERSION_STATIC: 1.0.0
41
-
34
+ # VERSION_STATIC: # optional
42
35
# Flag to toggle git tagging, enabled by default
43
- # TAG_COMMIT: true
44
-
36
+ # TAG_COMMIT: # optional, default is true
45
37
# Format of the git tag, [*] gets replaced with actual version
46
- # TAG_FORMAT: v*
47
-
38
+ # TAG_FORMAT: # optional, default is v*
48
39
# API key to authenticate with NuGet server
49
40
NUGET_KEY : ${{secrets.NUGET_API_KEY}}
50
-
51
41
# NuGet server uri hosting the packages, defaults to https://api.nuget.org
52
- # NUGET_SOURCE: https://api.nuget.org
53
-
54
- # Flag to toggle pushing symbols along with nuget package to the server, disabled by default
55
- INCLUDE_SYMBOLS : true
42
+ # NUGET_SOURCE: # optional, default is https://api.nuget.org
0 commit comments