Skip to content
This repository has been archived by the owner on Nov 25, 2021. It is now read-only.

urcomputeringpal/actions-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

actions-docker

Opinionated GitHub Actions for common Docker workflows

Opinions (expressed via default environment variables)

  • REGISTRY=gcr.io
  • IMAGE=$GITHUB_REPOSITORY
    • (Expects a Google Cloud Project named after your GitHub username)
  • TAG=$GITHUB_SHA
  • DEFAULT_BRANCH_TAG=true

Usage

Google Container Registry Setup

echo -n "$(cat path-to/downloaded-key/4a276e9e5862.json)" | base64
  • That's it! The GitHub Actions in this repository read this Secret and provide the correct values to the Docker daemon by default if present. If a Secret isn't present, build may succeed but push will return an error!

Build and push images for each commit

Add the following to .github/workflow:

workflow { "build and push images for each commit"
  on = "push"
  resolves = "docker push"
}

action "docker build" {
  uses = "urcomputeringpal/actions-docker@master"
  args = "build"
  secrets = ["GCLOUD_SERVICE_ACCOUNT_KEY"]
}

action "docker push" {
  uses = "urcomputeringpal/actions-docker@master"
  needs = "docker build"
  args = "push"
  secrets = ["GCLOUD_SERVICE_ACCOUNT_KEY"]
}

GC stale images

TODO