mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-07 15:16:56 +00:00
10 lines
247 B
JavaScript
10 lines
247 B
JavaScript
const core = require('@actions/core');
|
|
const { exportSecrets } = require('./action');
|
|
|
|
(async () => {
|
|
try {
|
|
await core.group('Get Vault Secrets', exportSecrets);
|
|
} catch (error) {
|
|
core.setFailed(error.message);
|
|
}
|
|
})();
|