Skip to content

Releases: bobheadxi/deployments

v1.5.0

26 Mar 04:24
648679e
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.4.0...v1.5.0

v1.4.0

20 Jan 04:24
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1...v1.4.0

v1.3.0

22 Jun 03:19
9d4477f
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1...v1.3.0

v1.2.0

10 May 16:57
11bd644
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1...v1.2.0

v1.1.0

28 Feb 17:27
b0db961
Compare
Choose a tag to compare

See https://github.com/bobheadxi/deployments/releases/tag/v1.0.0 for more details about what's new in bobheadxi/deployments@v1 and how to migrate from v0.6.x!

This release adds the ability to provide the payload parameter for deployment creation on step: start (#87)

v1.0.1

22 Feb 02:44
Compare
Choose a tag to compare

See https://github.com/bobheadxi/deployments/releases/tag/v1.0.0 for more details about what's new in bobheadxi/deployments@v1 and how to migrate from v0.6.x!

This release adds back the auto_inactive option that was originally removed.

v1.0.0

22 Feb 01:02
24c295a
Compare
Choose a tag to compare

bobheadxi/deployments@v1 brings a streamlined API, refactored codebase (now complete with integration testing), and more reliable behaviour. Thank you to everyone who has used this action and contributed features, documentation, and more!

⚠️ This release makes a number of following breaking changes from v0.6.x - please migrate with care! If you run into any issues, please feel free to request help in GitHub discussions:

  • CHANGED: no_override is now override, and the default behaviour is override: true in step: finish (step: start behaviour remains unchanged, but you can now set override: true on it now as well).
  • CHANGED: log_args is now debug, but does the same thing as before.
  • CHANGED: env is now always required. You can use env: ${{ steps.deployment.outputs.env }} to avoid repeating your env configuration.
  • REMOVED: auto_inactive - use override instead. This was added back in https://github.com/bobheadxi/deployments/releases/tag/v1.0.1.
  • REMOVED: transient - all deployments created by this action are transient by default, with removals handled by override or step: deactivate-env.
  • ADDED: step: delete-env deletes an environment entirely.

Then you can change your workflow to target the v1 tag, and automatically receive updates going forward:

- uses: bobheadxi/[email protected]
+ uses: bobheadxi/deployments@v1

To preserve old behaviour, please ensure that you have your usage of bobheadxi/deployments pinned to the desired version.

v0.6.2

28 Dec 07:29
Compare
Choose a tag to compare

What's Changed

  • feat: allow any deployment status supported by github api by @nmccrina-contessa in #69
  • upgrade dependencies

New Contributors

Full Changelog: v0.6.1...v0.6.2

v0.6.1

30 Oct 22:05
3288e49
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.6.0...v0.6.1

v0.6.0

11 Jun 06:53
6a3afe4
Compare
Choose a tag to compare
  • repository to update deployment status for can now be configured by the new repository parameter (#29)
  • improved documentation for log_args (#31)