Skip to content

Add version to image suffixes #4

Add version to image suffixes

Add version to image suffixes #4

name: Build on master push
on:
push:
branches:
- master
paths-ignore:
- '*.md'
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
DOCKER_CLI_EXPERIMENTAL: enabled
jobs:
build:
name: Build electrs image
runs-on: ubuntu-22.04
env:
VERSION: v0.10.4
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
latest=auto
suffix=-${{ env.VERSION }}
tags: |
type=ref,event=tag,priority=200
type=ref,event=branch,priority=200
type=sha,priority=100,prefix=sha-,format=short
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Docker buildx action
uses: docker/setup-buildx-action@v3
- name: Build and push the image
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
build-args: |
VERSION=${{ env.VERSION }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}