-
Notifications
You must be signed in to change notification settings - Fork 42
Commit 8eb5841
feat(entrypoing.sh): add
fix: check_consistency beign ignored
* feat(action.yml): add `gpg` inputs
Add input for GPG key and passphrase and whether or not to sign.
* feat(entrypoing.sh): add `gpg` sign
Add `-s` to `bump` command if `gpg_sign` is 'true'.
* fix(entrypoint.sh): set git config
Set `gpg.program`, `commit.gpgsign`, and `tag.gpgsign`.
* fix(gpg): add `signingkey`
Git requires `signingkey` to sign commits and tags.
feat(debug): add option for debug output
* fix(signingkey): specify UID
Git takes the UID for the signing key, not the key itself.
* fix(entrypoint.sh): add `gpg.program`
Add `gpg.program` to Git config.
* feat(entrypoint.sh): write `gpg` script
Use bash script to configure the GPG agent, import keys, set the
passphrase, and configure Git.
* fix(entrypoint.sh): replace `systemctl`
Use `service` as `systemctl` is not on GitHub Actions runners.
* fix(entrypoint.sh): remove `sudo`
* Revert "fix(entrypoint.sh): replace `systemctl`"
This reverts commit 2cf68aa.
* Revert "feat(entrypoint.sh): write `gpg` script"
This reverts commit a1c8571.
* Revert "fix(entrypoint.sh): add `gpg.program`"
This reverts commit 94d316f.
* fix(entrypoint.sh): remove signing commits
Only sign tags. It may be that `commitizen` only supports signing tags.
See: commitizen-tools/commitizen#616
* fix(entrypoint.sh): remove signing configs
Remove `tag.gpgsign` and `commit.gpgsign` from local Git config.
* fix(entrypoint.sh): remove `--gpg-sign`
See if Git will sign for us instead of through `cz`.
* fix(entrypoint.sh): add `commit.gpgsign`
Remove specifying `gpg.program` and add `commit.gpgsign` back.
* fix(entrypoint.sh): add `gpg-sign` back
Add `--gpg-sign` back to `commitizen`.
* fix(entrypoint.sh): move `--gpg-sign` after bump
Switch `--gpg-sign` applies to `bump` subcommand.
* fix(entrypoint.sh): move `--debug`
Move `--debug` switch to after `bump` command.
* Revert "fix(entrypoint.sh): move `--debug`"
This reverts commit e543aff.
* fix(entrypoint.sh): add `commit.gpgsign`
* ci(test): add `gpg -K` to stdout
* ci(test): more printouts
* ci(test): even more printouts
* ci(test): print which `gpg` is running
* ci(test): let `import-gpg` setup `gpg`
* ci(test): print `gpg --version`
* feat(ci): run in docker container
* Revert "feat(ci): run in docker container"
This reverts commit 3b2cae5.
Closes: #50
Closes: #53
Co-authored-by: Hendry, Adam <adam.hendry@metronic.com>gpg
sign1 parent e62ece2 commit 8eb5841
2 files changed
+21
-2
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
72 | 72 |
| |
73 | 73 |
| |
74 | 74 |
| |
75 | - | ||
75 | + | ||
76 | 76 |
| |
77 | 77 |
| |
78 | + | ||
79 | + | ||
80 | + | ||
81 | + | ||
82 | + | ||
83 | + | ||
84 | + | ||
85 | + | ||
86 | + | ||
87 | + | ||
88 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | - | ||
1 | + | ||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 | + | ||
6 | + | ||
5 | 7 |
| |
6 | 8 |
| |
7 | 9 |
| |
| |||
29 | 31 |
| |
30 | 32 |
| |
31 | 33 |
| |
34 | + | ||
35 | + | ||
36 | + | ||
32 | 37 |
| |
33 | 38 |
| |
34 | 39 |
| |
35 | 40 |
| |
41 | + | ||
42 | + | ||
43 | + | ||
36 | 44 |
| |
37 | 45 |
| |
38 | 46 |
| |
|
0 commit comments