setup-opentofu/index.js
Dmitry Kisler 01bef202d2
feat: ported action definition from setup-terraform
Signed-off-by: Dmitry Kisler <admin@dkisler.com>
2023-10-05 01:15:05 +02:00

16 lines
269 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
const core = require('@actions/core');
const setup = require('./lib/setup-tofu');
(async () => {
try {
await setup();
} catch (error) {
core.setFailed(error.message);
}
})();