mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2024-11-25 14:31:03 -05:00
Update CHANGELOG
This commit is contained in:
parent
30271cb41e
commit
9a3a8c34e9
2 changed files with 8 additions and 3 deletions
|
@ -1,5 +1,10 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.2.0 (2020/08/28)
|
||||||
|
|
||||||
|
* Add `workdir` input (#55)
|
||||||
|
* Update deps
|
||||||
|
|
||||||
## 2.1.1 (2020/05/18)
|
## 2.1.1 (2020/05/18)
|
||||||
|
|
||||||
* Fix importing of base64 armored string (#18)
|
* Fix importing of base64 armored string (#18)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
[![Become a sponsor](https://img.shields.io/badge/sponsor-crazy--max-181717.svg?logo=github&style=flat-square)](https://github.com/sponsors/crazy-max)
|
[![Become a sponsor](https://img.shields.io/badge/sponsor-crazy--max-181717.svg?logo=github&style=flat-square)](https://github.com/sponsors/crazy-max)
|
||||||
[![Paypal Donate](https://img.shields.io/badge/donate-paypal-00457c.svg?logo=paypal&style=flat-square)](https://www.paypal.me/crazyws)
|
[![Paypal Donate](https://img.shields.io/badge/donate-paypal-00457c.svg?logo=paypal&style=flat-square)](https://www.paypal.me/crazyws)
|
||||||
|
|
||||||
## About <!-- omit in toc -->
|
## About
|
||||||
|
|
||||||
GitHub Action to easily import a GPG key.
|
GitHub Action to easily import a GPG key.
|
||||||
|
|
||||||
|
@ -138,7 +138,7 @@ Following inputs can be used as `step.with` keys
|
||||||
| `git_push_gpgsign`**¹** | Bool | Sign all pushes automatically. (default `false`) |
|
| `git_push_gpgsign`**¹** | Bool | Sign all pushes automatically. (default `false`) |
|
||||||
| `git_committer_name`**¹** | String | Set commit author's name (defaults to the name associated with the GPG key) |
|
| `git_committer_name`**¹** | String | Set commit author's name (defaults to the name associated with the GPG key) |
|
||||||
| `git_committer_email`**¹** | String | Set commit author's email (defaults to the email address associated with the GPG key) |
|
| `git_committer_email`**¹** | String | Set commit author's email (defaults to the email address associated with the GPG key) |
|
||||||
| `workdir` | String | Working directory (below repository root) |
|
| `workdir` | String | Working directory (below repository root) (default `.`) |
|
||||||
|
|
||||||
> **¹** `git_user_signingkey` needs to be enabled for these inputs to be used.
|
> **¹** `git_user_signingkey` needs to be enabled for these inputs to be used.
|
||||||
|
|
||||||
|
@ -150,7 +150,7 @@ Following outputs are available
|
||||||
|---------------|---------|---------------------------------------|
|
|---------------|---------|---------------------------------------|
|
||||||
| `fingerprint` | String | Fingerprint of the GPG key (recommended as [user ID](https://www.gnupg.org/documentation/manuals/gnupg/Specify-a-User-ID.html)) |
|
| `fingerprint` | String | Fingerprint of the GPG key (recommended as [user ID](https://www.gnupg.org/documentation/manuals/gnupg/Specify-a-User-ID.html)) |
|
||||||
| `keyid` | String | Low 64 bits of the X.509 certificate SHA-1 fingerprint |
|
| `keyid` | String | Low 64 bits of the X.509 certificate SHA-1 fingerprint |
|
||||||
| `name` | String | Name associated with the GPG key |
|
| `name` | String | Name associated with the GPG key |
|
||||||
| `email` | String | Email address associated with the GPG key |
|
| `email` | String | Email address associated with the GPG key |
|
||||||
|
|
||||||
### environment variables
|
### environment variables
|
||||||
|
|
Loading…
Reference in a new issue