Action to import a GPG key with environment secrets
Find a file
2020-05-04 20:59:11 +02:00
.github Enable signing for Git commits and tags (#4) 2020-05-04 20:59:11 +02:00
.res Update README 2020-05-03 21:52:25 +02:00
__tests__ Allow to seed the internal cache of gpg-agent with provided passphrase (#5) 2020-05-04 16:17:14 +02:00
dist Enable signing for Git commits and tags (#4) 2020-05-04 20:59:11 +02:00
src Enable signing for Git commits and tags (#4) 2020-05-04 20:59:11 +02:00
.editorconfig Initial commit 2020-05-03 20:46:05 +02:00
.gitattributes Initial commit 2020-05-03 20:46:05 +02:00
.gitignore Initial commit 2020-05-03 20:46:05 +02:00
.prettierrc.json Initial commit 2020-05-03 20:46:05 +02:00
action.yml Enable signing for Git commits and tags (#4) 2020-05-04 20:59:11 +02:00
CHANGELOG.md Update CHANGELOG 2020-05-04 20:12:39 +02:00
jest.config.js Initial commit 2020-05-03 20:46:05 +02:00
LICENSE Initial commit 2020-05-03 20:46:05 +02:00
package-lock.json Update generated content 2020-05-04 18:08:45 +00:00
package.json Drop Windows support 2020-05-04 20:06:27 +02:00
README.md Enable signing for Git commits and tags (#4) 2020-05-04 20:59:11 +02:00
tsconfig.json Initial commit 2020-05-03 20:46:05 +02:00

GitHub release GitHub marketplace Test workflow Become a sponsor Paypal Donate

About

GitHub Action to easily import your GPG key to sign commits and tags.

If you are interested, check out my other :octocat: GitHub Actions!

Import GPG key

Features

  • Works on Linux and MacOS virtual environments
  • Allow to seed the internal cache of gpg-agent with provided passphrase
  • Purge imported GPG key and cache information from runner (security)
  • Enable signing for Git commits and tags

Usage

name: import-gpg

on:
  push:
    branches: master

jobs:
  import-gpg:
    runs-on: ubuntu-latest
    steps:
      -
        name: Checkout
        uses: actions/checkout@v2
      -
        name: Import GPG key
        uses: crazy-max/ghaction-import-gpg@v1
        with:
          git_gpgsign: true
        env:
          SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
          PASSPHRASE: ${{ secrets.PASSPHRASE }}

Customizing

inputs

Following inputs can be used as step.with keys

Name Type Description
git_gpgsign Bool Enable signing for this Git repository (default false)

environment variables

Following environment variables can be used as step.env keys

Name Description
SIGNING_KEY GPG private key exported as an ASCII armored version
PASSPHRASE Passphrase of your GPG key if setted for your SIGNING_KEY

How can I help?

All kinds of contributions are welcome 🙌! The most basic way to show your support is to star 🌟 the project, or to raise issues 💬 You can also support this project by becoming a sponsor on GitHub 👏 or by making a Paypal donation to ensure this journey continues indefinitely! 🚀

Thanks again for your support, it is much appreciated! 🙏

License

MIT. See LICENSE for more details.