You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 26, 2022. It is now read-only.
# NuGet server uri hosting the packages, defaults to https://api.nuget.org
58
55
# NUGET_SOURCE: https://api.nuget.org
59
56
60
-
# NuGet server uri hosting the symbols, defaults to https://api.nuget.org
61
-
# NUGET_SYMBOL_SOURCE: https://api.nuget.org
62
-
63
-
# Flag to toggle pushing symbols along with nuget package to the server, enabled by default
64
-
# INCLUDE_SYMBOLS: true
57
+
# Flag to toggle pushing symbols along with nuget package to the server, disabled by default
58
+
# INCLUDE_SYMBOLS: false
65
59
```
66
60
67
61
- Project gets published only if there's a `NUGET_KEY` configured in the repository
@@ -78,10 +72,8 @@ VERSION_STATIC| | Useful with external providers like Nerdbank.GitVersioning, ig
78
72
TAG_COMMIT | `true` | Flag to toggle git tagging, enabled by default
79
73
TAG_FORMAT | `v*` | Format of the git tag, `[*]` gets replaced with actual version
80
74
NUGET_KEY | | API key to authenticate with NuGet server
81
-
NUGET_SYMBOL_KEY | `[NUGET_KEY]` | API key to authenticate with NuGet symbols server, defaults to NUGET_KEY
82
75
NUGET_SOURCE | `https://api.nuget.org` | NuGet server uri hosting the packages, defaults to https://api.nuget.org
83
-
NUGET_SYMBOL_SOURCE | `https://api.nuget.org` | NuGet server uri hosting the symbols, defaults to https://api.nuget.org
84
-
INCLUDE_SYMBOLS | `true` | Flag to toggle pushing symbols along with nuget package to the server, enabled by default
76
+
INCLUDE_SYMBOLS | `false` | Flag to toggle pushing symbols along with nuget package to the server, disabled by default
85
77
86
78
## Outputs
87
79
@@ -94,7 +86,7 @@ SYMBOLS_PACKAGE_NAME | Name of the symbols package generated
94
86
SYMBOLS_PACKAGE_PATH | Path to the generated symbols package
95
87
96
88
**FYI:**
97
-
- Outputs may not be set if the action failed
89
+
- Outputs may or may not be set depending on the action inputs or if the action failed
98
90
-`NUGET_SOURCE` must support `/v3-flatcontainer/PACKAGE_NAME/index.json` for version change detection to work
99
91
- Multiple projects can make use of steps to configure each project individually, common inputs between steps can be given as `env` for [job / workflow](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#env)
0 commit comments