Skip to content

Commit

Permalink
Document how to generate and export GPG key for releasing packer plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi committed Mar 16, 2024
1 parent 54f83f0 commit 35dbc27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/content/docs/plugins/creation/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Here's what you need to create releases using GitHub Actions:
- `GPG_PRIVATE_KEY` - Your ASCII-armored GPG private key. You can export this with `gpg --armor --export-secret-keys [key ID or email]`.
- `GPG_PASSPHRASE` - The passphrase for your GPG private key.
7. Push a new valid version tag (e.g. `v1.2.3`) to test that the GitHub Actions
releaser is working. The tag must be a valid
releaser is working. The tag can be created using `git tag -a v1.2.3 -m "v1.2.3"` must be a valid
[Semantic Version](https://semver.org/) preceded with a `v`. Once the tag is pushed, the github actions you just configured will automatically build release binaries that Packer can download using `packer init`. For more details on how
to install a plugin using `packer init`, see the
[init docs](https://developer.hashicorp.com/packer/docs/commands/init).
Expand Down

0 comments on commit 35dbc27

Please sign in to comment.