setup-opentofu/index.js

17 lines
269 B
JavaScript
Raw Normal View History

/**
* 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);
}
})();