Skip to content

Commit

Permalink
This much fix the issue
Browse files Browse the repository at this point in the history
  • Loading branch information
NV4RE committed Nov 27, 2019
1 parent eb1dfef commit 7098b13
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 20 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/onTags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
node-version: 10.x
- name: npm install and publish
run: |
npm config set //npmjs.com/:_authToken ${{secrets.NPM_TOKEN}}
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
npm version ${{ steps.get_version.outputs.VERSION }} --no-git-tag-version
npm install
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
22 changes: 5 additions & 17 deletions docs/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@
}
]
},
"default": {},
"defaultProperties": [],
"description": "The input to be mapping to workflow's data",
"type": "object"
Expand All @@ -135,6 +134,7 @@
}
},
"required": [
"inputParameters",
"taskReferenceName"
],
"type": "object"
Expand Down Expand Up @@ -196,7 +196,6 @@
}
]
},
"default": {},
"defaultProperties": [],
"description": "The input to be mapping to workflow's data",
"type": "object"
Expand All @@ -223,6 +222,7 @@
}
},
"required": [
"inputParameters",
"name",
"taskReferenceName",
"type"
Expand Down Expand Up @@ -317,7 +317,6 @@
}
]
},
"default": {},
"defaultProperties": [],
"description": "The input to be mapping to workflow's data",
"type": "object"
Expand All @@ -339,6 +338,7 @@
"required": [
"decisions",
"defaultDecision",
"inputParameters",
"taskReferenceName",
"type"
],
Expand Down Expand Up @@ -384,7 +384,6 @@
}
]
},
"default": {},
"defaultProperties": [],
"description": "The input to be mapping to workflow's data",
"type": "object"
Expand Down Expand Up @@ -428,6 +427,7 @@
}
},
"required": [
"inputParameters",
"parallelTasks",
"taskReferenceName",
"type"
Expand Down Expand Up @@ -897,7 +897,6 @@
"defaultProperties": [],
"properties": {
"ackTimeout": {
"default": 0,
"description": "The given time that task can ack before it timeout in miliseconds (0 is no timeout)",
"minimum": 0,
"type": "number"
Expand All @@ -918,7 +917,6 @@
}
]
},
"default": {},
"defaultProperties": [],
"description": "The input to be mapping to workflow's data",
"type": "object"
Expand All @@ -932,30 +930,20 @@
},
"retry": {
"additionalProperties": false,
"default": {
"delay": 0,
"limit": 0
},
"defaultProperties": [],
"description": "Retry object",
"properties": {
"delay": {
"default": 0,
"description": "The delay before dispatch task",
"minimum": 0,
"type": "number"
},
"limit": {
"default": 0,
"description": "Retry limit number (0 is no retry)",
"minimum": 0,
"type": "number"
}
},
"required": [
"delay",
"limit"
],
"type": "object"
},
"taskReferenceName": {
Expand All @@ -966,7 +954,6 @@
"type": "string"
},
"timeout": {
"default": 0,
"description": "The given time that task can finish before it timeout in miliseconds (0 is no timeout)",
"minimum": 0,
"type": "number"
Expand All @@ -979,6 +966,7 @@
}
},
"required": [
"inputParameters",
"name",
"taskReferenceName",
"type"
Expand Down
3 changes: 1 addition & 2 deletions docs/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,9 +441,8 @@ The input to be mapping to workflow's data

`inputParameters`

- is optional
- is **required**
- type: `object`
- default: `{}`
- defined in this schema

### inputParameters Type
Expand Down

0 comments on commit 7098b13

Please sign in to comment.