mirror of
https://github.com/dagger/dagger-for-github.git
synced 2026-01-03 05:29:52 +11:00
update action to dagger 0.2
- Remove AGE key setup - Update README to use `dagger do` - Update tests to dagger 0.2 Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
parent
64f8bd95de
commit
24d6bfd692
96 changed files with 15028 additions and 70 deletions
|
|
@ -2,7 +2,6 @@ import * as core from '@actions/core';
|
|||
|
||||
export interface Inputs {
|
||||
version: string;
|
||||
ageKey: string;
|
||||
workdir: string;
|
||||
args: string;
|
||||
installOnly: boolean;
|
||||
|
|
@ -12,7 +11,6 @@ export interface Inputs {
|
|||
export async function getInputs(): Promise<Inputs> {
|
||||
return {
|
||||
version: core.getInput('version') || 'latest',
|
||||
ageKey: core.getInput('age-key'),
|
||||
workdir: core.getInput('workdir') || '.',
|
||||
args: core.getInput('args'),
|
||||
installOnly: core.getBooleanInput('install-only'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue