Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed bug in circle ci config, added documentation for release #63

Merged
merged 1 commit into from
Mar 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.