Add github markdown css to this repo. #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Docker Images | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build and push docker images | |
permissions: | |
packages: write | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
# We might want to migrate to dockerhub/catalystcoop/pudl-output-differ | |
# for now, try pushing to ghcr.io repo | |
- name: Setup Docker Metadata | |
id: docker_metadata | |
uses: docker/[email protected] | |
with: | |
images: catalystcoop/pudl-output-differ | |
flavor: latest=auto | |
tags: | | |
type=sha,prefix={{branch}}- | |
type=raw,value=latest-{{branch}} | |
- name: Login to DockerHub | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.docker_metadata.outputs.tags }} | |
labels: ${{ steps.docker_metadata.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |