Skip to content

v4.2.0

v4.2.0 #64

Workflow file for this run

name: publish
on:
release:
types: [published]
workflow_dispatch:
jobs:
publish:
strategy:
fail-fast: false
matrix:
clamav: [ "0.104", "0.105", "1.1", "1.2" ]
runs-on: ubuntu-latest
steps:
-
name: Checkout code
uses: actions/checkout@v4
-
name: Get repository name
run: echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV
shell: bash
-
name: Read ClamAV version
uses: bfren/read-file@v2
with:
file: ./${{ matrix.clamav }}/overlay/tmp/CLAMAV_REVISION
id: clamav_revision
-
name: Read image version
uses: bfren/read-file@v2
with:
file: ./VERSION_MAJOR
id: version_major
-
name: Read image version
uses: bfren/read-file@v2
with:
file: ./VERSION_MINOR
id: version_minor
-
name: Read image version
uses: bfren/read-file@v2
with:
file: ./VERSION
id: version
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
context: .
file: ./${{ matrix.clamav }}/Dockerfile
build-args: |
BF_IMAGE=${{ env.REPOSITORY_NAME }}
BF_VERSION=${{ steps.version.outputs.contents }}
BF_PUBLISH=1
push: true
platforms: linux/amd64,linux/arm/v7,linux/arm64
tags: |
bfren/clamav:clamav${{ matrix.clamav }}
bfren/clamav:clamav${{ matrix.clamav }}-${{ steps.version_major.outputs.contents }}
bfren/clamav:clamav${{ matrix.clamav }}-${{ steps.version_minor.outputs.contents }}
bfren/clamav:clamav${{ matrix.clamav }}-${{ steps.version.outputs.contents }}
bfren/clamav:clamav${{ steps.clamav_revision.outputs.contents }}
ghcr.io/bfren/clamav:clamav${{ matrix.clamav }}
ghcr.io/bfren/clamav:clamav${{ matrix.clamav }}-${{ steps.version_major.outputs.contents }}
ghcr.io/bfren/clamav:clamav${{ matrix.clamav }}-${{ steps.version_minor.outputs.contents }}
ghcr.io/bfren/clamav:clamav${{ matrix.clamav }}-${{ steps.version.outputs.contents }}
ghcr.io/bfren/clamav:clamav${{ steps.clamav_revision.outputs.contents }}
-
name: Build and push default tags
id: docker_build_default
if: matrix.clamav == '1.2'
uses: docker/build-push-action@v5
with:
context: .
file: ./${{ matrix.clamav }}/Dockerfile
build-args: |
BF_IMAGE=${{ env.REPOSITORY_NAME }}
BF_PUBLISHING=1
BF_VERSION=${{ steps.version.outputs.contents }}
push: true
platforms: linux/amd64,linux/arm/v7,linux/arm64
tags: |
bfren/clamav:latest
bfren/clamav:${{ steps.version_major.outputs.contents }}
bfren/clamav:${{ steps.version_minor.outputs.contents }}
bfren/clamav:${{ steps.version.outputs.contents }}
ghcr.io/bfren/clamav:latest
ghcr.io/bfren/clamav:${{ steps.version_major.outputs.contents }}
ghcr.io/bfren/clamav:${{ steps.version_minor.outputs.contents }}
ghcr.io/bfren/clamav:${{ steps.version.outputs.contents }}
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}