We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6fa6a3 commit 8723a4eCopy full SHA for 8723a4e
1 file changed
index.js
@@ -10,6 +10,10 @@ try {
10
const version = core.getInput('version');
11
const displayVersion = core.getInput('displayVersion');
12
const printFile = core.getInput('printFile');
13
+
14
+ if (version && version.trim() == '') {
15
+ core.setFailed("Paramenter csproj is required.");
16
+ }
17
18
19
// match <ApplicationVersion> followed by any sequence of characters that are not a '<', followed by </ApplicationVersion>
0 commit comments