Skip to content

Ebro 0.11.0

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Jan 22:52

Breaking Changes

  • Now the interactive and labels properties introduced in version 0.10.0 are included in extends operations.

Environment variable expansion

Expanding environment variables now supports referencing variables that were defined before the current variable in the same map.

environment:
  VERSION: "1.0.0"

tasks:
  default:
    environment:
      VERSION: "2.0.0"
      VERSION_RC: "${VERSION}-rc"
    script: echo "$VERSION_RC"

Running the Ebro.yaml file above would result in:

  • before: 1.0.0-rc
  • now: 2.0.0-rc

Miscellanea

  • Change on the ebrow workspace script: Now using shasum instead of sha256sum so the used command behaves the same in both Linux and MacOs.