github_actions_toolkit 0.0.8
github_actions_toolkit: ^0.0.8 copied to clipboard
Toolkit containing useful methods to build a GitHub Action with Dart.
Changelog #
0.0.8 #
- Support for multiline outputs and environment variables
0.0.7 #
- An environment file is now used to set outputs.
- Dart SDK upper-bound is now set to 4.0.0.
0.0.6 #
- Null-safety migration
0.0.5 #
- Fix: streamed outputs of processes were incorrectly decoded in UTF-8.
- Fix: the toolkit won't try to edit the environment variables of the current running action.
- File commands have been implemented.
0.0.4 #
- Rename
workDirargument byworkingDirectoryforexecandexecInParallelfunctions. execandexecInParallelnow return aProcessResult.execandexecInParalleldon't blockstdoutandstderrStreamConsumers anymore.
0.0.3 #
- The
execfunction can now be unawaited. - New function
execInParallel. - More documentation.
0.0.2 #
- Newly created environment variables and paths are accessible to the running action.
- Incorrect workflow command parameters fixed.
- New getters
isDebugandgetState. - New getters for the default environment under
env. setErrorMessage,setWarningMessageandsetDebugMessagereplaced bylog.error,log.warningandlog.debuggroup,startGroupandendGroupmoved underlog.
0.0.1 #
- Initial version, created by Stagehand