1
0
Fork 0
toolkit/packages/core
Bryan MacFarlane e2358e2973 update core releases.md 2019-09-18 14:47:11 -04:00
..
__tests__ actions/toolkit#127: getInput supports variables with multiple spaces (#129) 2019-09-12 13:41:11 -04:00
src Implement set-secret (#141) 2019-09-18 14:25:05 -04:00
README.md Fix readme 2019-08-28 22:36:17 -04:00
RELEASES.md update core releases.md 2019-09-18 14:47:11 -04:00
package-lock.json Implement set-secret (#141) 2019-09-18 14:25:05 -04:00
package.json Implement set-secret (#141) 2019-09-18 14:25:05 -04:00
tsconfig.json Add Bryan's core code 2019-05-16 16:40:21 -04:00

README.md

@actions/core

Core functions for setting results, logging, registering secrets and exporting variables across actions

Usage

Inputs/Outputs

You can use this library to get inputs or set outputs:

const core = require('@actions/core');

const myInput = core.getInput('inputName', { required: true });

// Do stuff

core.setOutput('outputKey', 'outputVal');

Exporting variables

You can also export variables for future steps. Variables get set in the environment.

const core = require('@actions/core');

// Do stuff

core.exportVariable('envVar', 'Val');

PATH Manipulation

You can explicitly add items to the path for all remaining steps in a workflow:

const core = require('@actions/core');

core.addPath('pathToTool');

Exit codes

You should use this library to set the failing exit code for your action:

const core = require('@actions/core');

try {
  // Do stuff
}
catch (err) {
  // setFailed logs the message and sets a failing exit code
  core.setFailed(`Action failed with error ${err}`);
}

Logging

Finally, this library provides some utilities for logging. Note that debug logging is hidden from the logs by default. This behavior can be toggled by enabling the Step Debug Logs.

const core = require('@actions/core');

const myInput = core.getInput('input');
try {
  core.debug('Inside try block');
  
  if (!myInput) {
    core.warning('myInput was not set');
  }
  
  // Do stuff
}
catch (err) {
  core.error(`Error ${err}, action may still succeed though`);
}

This library can also wrap chunks of output in foldable groups.

const core = require('@actions/core')

// Manually wrap output
core.startGroup('Do some function')
doSomeFunction()
core.endGroup()

// Wrap an asynchronous function call
const result = await core.group('Do something async', async () => {
  const response = await doSomeHTTPRequest()
  return response
})