Skip to content

Latest commit

 

History

History
68 lines (41 loc) · 2.31 KB

CHANGELOG.md

File metadata and controls

68 lines (41 loc) · 2.31 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

2.0.3 - 2022-10-18

Changed

  • fix: correctly handle multiline values in Set-ActionOutput and Set-ActionVariable. (#18)

2.0.2 - 2022-10-17

Changed

2.0.1 - 2021-02-05

Added

  • Send-ActionFileCommand cmdlet that handles sending commands to Environment Files instead of console output (#8).

Changed

  • Add-ActionPath and Set-ActionVariable are updated for Environment Files Actions Runner change (#8).

2.0.0 - 2020-09-10

Changed

  • Refactored into a 'composite' action which has following implications (#4):
    • Action runs slightly faster because there's no 'node' process in between (or io stream redirects).
    • Action has now just single script input, and you cannot "add" outputs other than automatic "result" and "error".

Removed

  • All optional inputs - until "composite" refactor, they were used to pass workflow contexts to the action. It's no longer necessary, since 'composite' action can "grab" them on it's own.
  • Ability to set custom outputs from the script - now only result and error are set (as outlined in readme).

1.0.0 - 2020-06-10

Added

  • Initial action code
  • GitHubActionsCore PowerShell module