Opinionated GitHub Actions for common Docker workflows
Fork from https://github.com/urcomputeringpal/actions-docker
REGISTRY=gcr.io
IMAGE=$GITHUB_REPOSITORY
- (Expects a Google Cloud Project named after your GitHub username)
TAG=$GITHUB_SHA
DEFAULT_BRANCH_TAG=true
- If you haven't already, create a Google Cloud Project named after your GitHub username and follow the Container Registry Quickstart.
- Create a Service Account named after your GitHub repository.
- Add the Cloud Build Service Account role to this Service Account.
- Generate a key for this Service Account. Download a JSON key when prompted.
- Create a Secret on your repository named
GCLOUD_SERVICE_ACCOUNT_KEY
(Settings > Secrets) with the contents of:
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 butpush
will return an error!
Add the following to .github/workflows/docker.yaml
:
name: Docker
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Docker Build
uses: benjlevesque/actions-docker-gcr/build@master
- name: Docker Push
uses: benjlevesque/actions-docker-gcr/push@master
env:
GCLOUD_SERVICE_ACCOUNT_KEY: ${{ secrets.GCLOUD_SERVICE_ACCOUNT_KEY }}
[...]
steps:
- uses: actions/checkout@v1
- name: Docker Build
uses: benjlevesque/actions-docker-gcr/build@master
env:
IMAGE: my-project/my-image
GCLOUD_REGISTRY: eu.gcr.io
- name: Docker Push
uses: benjlevesque/actions-docker-gcr/push@master
env:
IMAGE: my-project/my-image
GCLOUD_REGISTRY: eu.gcr.io
GCLOUD_SERVICE_ACCOUNT_KEY: ${{ secrets.GCLOUD_SERVICE_ACCOUNT_KEY }}