mirror of
https://github.com/dagger/dagger-for-github.git
synced 2025-12-31 20:59:43 +11:00
version: default to 0.1
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
parent
f83409d4f4
commit
40f529cb2d
4 changed files with 4 additions and 4 deletions
|
|
@ -69,7 +69,7 @@ Following inputs can be used as `step.with` keys
|
|||
|
||||
| Name | Type | Default | Description |
|
||||
|------------------|---------|--------------|------------------------------------------------------------------|
|
||||
| `version` | String | `latest` | Dagger version |
|
||||
| `version` | String | `0.1` | Dagger version |
|
||||
| `age-key` | String | | Dagger private key |
|
||||
| `args` | String | | Arguments to pass to Dagger |
|
||||
| `workdir` | String | `.` | Working directory (below repository root) |
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ branding:
|
|||
inputs:
|
||||
version:
|
||||
description: 'Dagger version'
|
||||
default: 'latest'
|
||||
default: '0.1'
|
||||
required: false
|
||||
age-key:
|
||||
description: 'Dagger private key'
|
||||
|
|
|
|||
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
|
|
@ -41,7 +41,7 @@ const core = __importStar(__webpack_require__(186));
|
|||
function getInputs() {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
return {
|
||||
version: core.getInput('version') || 'latest',
|
||||
version: core.getInput('version') || '0.1',
|
||||
ageKey: core.getInput('age-key'),
|
||||
workdir: core.getInput('workdir') || '.',
|
||||
args: core.getInput('args'),
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ export interface Inputs {
|
|||
|
||||
export async function getInputs(): Promise<Inputs> {
|
||||
return {
|
||||
version: core.getInput('version') || 'latest',
|
||||
version: core.getInput('version') || '0.1',
|
||||
ageKey: core.getInput('age-key'),
|
||||
workdir: core.getInput('workdir') || '.',
|
||||
args: core.getInput('args'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue