cert-manager-webhook-example/.github/workflows/docker-image.yml
2022-04-22 08:37:22 +03:00

20 lines
397 B
YAML

name: Docker Image CI
on:
push:
tags:
- 'v*.*.*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ghcr.io/g-core/cert-manager-webhook-gcore:latest
- name: Push the Docker image
run: docker push ghcr.io/g-core/cert-manager-webhook-gcore:latest