diff --git a/.github/actions/echo-hello/index.js b/.github/actions/echo-hello/index.js index 7ce53da..9995284 100644 --- a/.github/actions/echo-hello/index.js +++ b/.github/actions/echo-hello/index.js @@ -1,7 +1,7 @@ const core = require('@actions/core'); try { - const rts = core.getInput('rts'); + const rts = process.env.rts; console.log(`Hello, ${rts}`); } catch (error) { core.setFailed(error.message);