3 Commits

Author SHA1 Message Date
Gergő Jedlicska c3d711f76d update dist 2023-08-10 16:26:47 +02:00
Gergő Jedlicska ae84132685 Merge branch 'main' of github.com:specklesystems/speckle-automate-github-action 2023-08-10 16:06:40 +02:00
Gergő Jedlicska 937dd88b55 merge error raising 2023-08-10 16:06:11 +02:00
3 changed files with 3 additions and 1 deletions
Generated Vendored
+1
View File
@@ -14033,6 +14033,7 @@ const parseInputs = () => {
}
catch (err) {
core.setFailed(`Parsing the function input schema failed with: ${err}`);
throw err;
}
const rawInputs = {
speckleAutomateUrl: core.getInput('speckle_automate_url', { required: true }),
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long
+1
View File
@@ -23,6 +23,7 @@ const parseInputs = (): InputVariables => {
if (rawInputSchema) speckleFunctionInputSchema = JSON.parse(rawInputSchema)
} catch (err) {
core.setFailed(`Parsing the function input schema failed with: ${err}`)
throw err
}
const rawInputs: InputVariables = {
speckleAutomateUrl: core.getInput('speckle_automate_url', { required: true }),