diff --git a/.circleci/config.yml b/.circleci/config.yml index 0c517a2..33565f8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -63,6 +63,7 @@ jobs: - run: name: "Import GPG Key and Test Signing" command: | + echo GPG_TTY=$(tty) echo "$GPG_PRIVATE_KEY" | base64 -d > key.pem echo "$PASSPHRASE" | gpg --batch --import ./key.pem rm key.pem diff --git a/README.md b/README.md index ae9b878..6bcbbcd 100644 --- a/README.md +++ b/README.md @@ -138,3 +138,9 @@ Since this is the rockset provider, the provider is also named `rockset`. If the above is all done correctly you are now able to run `terraform init`. It will see the provider in the folder and treat it as if it's already downloaded. + +## Release Steps +- Merge branch to master +- On master branch create new tag: `git tag v{version_number}` +- Push tag: `git push origin v{version_number}` +Pushing the tag should trigger circle ci to create a draft release and build all necesary assets. Then you can navigate to github and publish the release. \ No newline at end of file