mirror of
https://github.com/ilammy/msvc-dev-cmd.git
synced 2026-09-07 06:07:19 +08:00
3fdf9b2e34
Now that I know how to write some simple action, let's make a stub more complete. For example, I already know what inputs I would like to handle for this action.
7 lines
145 B
JavaScript
7 lines
145 B
JavaScript
const core = require('@actions/core')
|
|
|
|
async function main() {
|
|
}
|
|
|
|
main().catch(() => core.setFailed('could not setup Developer Command Prompt'))
|