Skip to content

Bump d3-color and trifid #29

Bump d3-color and trifid

Bump d3-color and trifid #29

Workflow file for this run

name: Build and push Docker image
on:
push:
branches:
- "**"
tags:
- "v*.*.*"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
uses: zazuko/action-docker-meta@main
id: docker_meta
with:
images: ghcr.io/zazuko/wikidata-zazuko-com
- name: Build and push Docker images
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}