setup-terraform/index.js
2023-06-02 16:51:44 -04:00

16 lines
274 B
JavaScript

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