drop deprecated input

This commit is contained in:
Alif Rachmawadi
2020-03-04 16:26:06 +00:00
parent fbce6ef0db
commit 3d84912f19
2 changed files with 2 additions and 3 deletions

View File

@@ -3,8 +3,7 @@ import * as installer from './installer';
async function run() {
try {
const version =
core.getInput('version') || core.getInput('flutter-version') || '';
const version = core.getInput('flutter-version') || '';
const channel = core.getInput('channel') || 'stable';
await installer.getFlutter(version, channel);