Skip to content

refactor: prepare coroutine tests #33

refactor: prepare coroutine tests

refactor: prepare coroutine tests #33

Workflow file for this run

name: Publish Docker image
on:
push:
paths:
- Dockerfile
branches:
- master
pull_request:
paths:
- Dockerfile
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
# set latest tag for master branch
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
type=ref,event=branch
type=ref,event=pr
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ hashFiles('Dockerfile') }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to DockerHub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
pull: true
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: |
${{ steps.meta.outputs.tags }}
ghcr.io/${{ github.repository }}:latest
type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache