/docker-git-crypt-action

A docker container und github action to decrypt a repository

Primary LanguageDockerfileMIT LicenseMIT

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"]
}