Skip to content

feat: Bump version to 2.4.0 #572

feat: Bump version to 2.4.0

feat: Bump version to 2.4.0 #572

Workflow file for this run

name: Build and publish docker image
# Triggered when either main branch changes or when version tag is pushed on any branch. First scenario will release (and overwrite) under the tag 'main', this should only be used for development. Second scenario will release under the specified version tag, these are versioned releases.
on:
push:
branches: [main]
tags: ['v*.*.*']
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
# Fetches the commit that triggered this workflow
# https://github.com/actions/checkout
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'recursive'
# Create and boot a builder. Used in build-push-action.
# https://github.com/docker/setup-buildx-action
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v2
# Login against a Docker registry
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# Build and push Docker image with Buildx
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}