Skip to content

Commit

Permalink
BREAKING: remove version input
Browse files Browse the repository at this point in the history
  • Loading branch information
maximousblk committed Jun 28, 2022
1 parent 0d6c97f commit bf03653
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ inputs:
description: 'Deno version'
default: 'latest'
required: false
version:
description: 'Deno version'
default: 'latest'
required: false

outputs:
version:
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import install from './install';

async function main() {
try {
let version = actions.getInput('deno-version') || actions.getInput('version');
let version = actions.getInput('deno-version');
if (version) {
actions.debug(`[MAIN] input deno version: ${version}`);
install(version);
Expand Down

0 comments on commit bf03653

Please sign in to comment.