Skip to content

Create and publish a Docker image #33

Create and publish a Docker image

Create and publish a Docker image #33

Workflow file for this run

name: Create and publish a Docker image
on:
push:
branches: ['master']
schedule:
- cron: "0 0 3 * *"
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
REPRO_NAME: gkeepbringsync
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker Image Update Checker
id: check
uses: lucacome/docker-image-update-checker@v1
if: github.event_name != 'push'
with:
base-image: python:3.10
image: swaggeroo/gkeepbringsync
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
if: github.event_name == 'push' || steps.check.outputs.needs-updating == 'true'
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
if: github.event_name == 'push' || steps.check.outputs.needs-updating == 'true'
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
if: github.event_name == 'push' || steps.check.outputs.needs-updating == 'true'
with:
images: |
ghcr.io/${{ env.IMAGE_NAME }}
swaggeroo/${{ env.REPRO_NAME }}
tags: |
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha
- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
if: github.event_name == 'push' || steps.check.outputs.needs-updating == 'true'
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}