Skip to content

v2.2.10

v2.2.10 #46

Workflow file for this run

name: Release docker image
on:
release:
types:
- released
jobs:
docker-service:
name: Build dockerized services
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push functions
uses: docker/build-push-action@v3
with:
context: ./
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: ghcr.io/${{ github.repository }}:${{ github.event.release.tag_name }}
cache-from: type=gha
cache-to: type=gha,mode=max