A alpine docker container and github action to decrypt a repository
Pass in the GIT_CRYPT_KEY
from git-crypt) as base64 encoded string (git-crypt export-key secret.key && cat secret.key | base64
)
action "Decrypt github repo" {
uses = "docker://steffenmllr/docker-git-crypt-action:v0.6.0"
secrets = ["GIT_CRYPT_KEY"]
}
action "Decrypt github repo" {
uses = "steffenmllr/docker-git-crypt-action:v0.6.0"
secrets = ["GIT_CRYPT_KEY"]
}