Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 493 Bytes

RELEASE.md

File metadata and controls

13 lines (11 loc) · 493 Bytes

To release a new version, merge in the upstream, then push the version tag, suffixed with -seq. A GitHub Actions workflow should take care of the rest.

Then go add this version to the tf-init script in the monorepo.

$ git remote add upstream git@github.com:cyrilgdn/terraform-provider-postgresql.git
$ git fetch --all
$ git merge --no-ff upstream/main  # resolve conflicts, favoring our previous changes
$ git push origin HEAD
$ git tag v1.20.0-seq
$ git push origin v1.20.0-seq