Skip to content
unlock

GitHub Action

GitHub Action to unlock git-crypt secrets

1.3.0 Latest version

GitHub Action to unlock git-crypt secrets

unlock

GitHub Action to unlock git-crypt secrets

Unlock git-crypt files with a simple alpine based Docker image

Installation

Copy and paste the following snippet into your .yml file.

              

- name: GitHub Action to unlock git-crypt secrets

uses: sliteteam/[email protected]

Learn more about this action in sliteteam/github-action-git-crypt-unlock

Choose a version

Github Action running git-crypt unlock

Usage

Example Workflow file

jobs:
  deploy:
    name: Test git-crypt-unlock
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - name: Unlock secrets
        uses: sliteteam/[email protected]
        env:
          GIT_CRYPT_KEY: ${{ secrets.GIT_CRYPT_KEY }}

Secrets

  • GIT_CRYPT_KEY Required Base64 encoded git-crypt key file.
    • Get it from an unlocked git-crypt env with:
      git-crypt export-key ./tmp-key && cat ./tmp-key | base64 | pbcopy && rm ./tmp-key

Run Directory

You can run the git-crypt unlock command from a different directory besides GITHUB_WORKSPACE by setting a RUN_DIR env var.

Running tests

./test/entrypoint_test.sh