steffenmllr / docker-git-crypt-action

A docker container und github action to decrypt a repository

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-git-crypt-action

A alpine docker container and github action to decrypt a repository

Github Action

Pass in the GIT_CRYPT_KEY from git-crypt) as base64 encoded string (git-crypt export-key secret.key && cat secret.key | base64)

Use cached docker image
action "Decrypt github repo" {
  uses = "docker://steffenmllr/docker-git-crypt-action:v0.6.0"
  secrets = ["GIT_CRYPT_KEY"]
}
Build from repo
action "Decrypt github repo" {
  uses = "steffenmllr/docker-git-crypt-action:v0.6.0"
  secrets = ["GIT_CRYPT_KEY"]
}

About

A docker container und github action to decrypt a repository

License:MIT License


Languages

Language:Dockerfile 81.2%Language:Shell 18.8%