Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 594 Bytes

RELEASE.md

File metadata and controls

20 lines (15 loc) · 594 Bytes

Releasing

When you want to cut a new release, you can:

  1. Merge any of the changes you want in the release to master.
  2. Ensure that Terraform acceptance tests have passed.
  3. Create a new commit on master that adjusts the CHANGELOG so all unreleased changes appear under the new version.
  4. Tag that commit with whatever your release version should be, and push everything.

That will trigger the CI pipeline that will publish your provider version to the Terraform registry.

That ends up looking like this:

git commit -m "Changelog for v1.2.3"
git tag v1.2.3
git push --tags