mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-02-02 17:59:07 +08:00
10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
const core = require('@actions/core');
|
|
|
|
class Output {
|
|
static async setArtifactsPath(artifactsPath) {
|
|
await core.setOutput('artifactsPath', artifactsPath);
|
|
}
|
|
}
|
|
|
|
export default Output;
|