Using latest base images #149
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dev | |
on: | |
push: | |
branches: ['**'] | |
tags-ignore: ['**'] | |
workflow_dispatch: | |
env: | |
TEST_TAG: clamav:test | |
jobs: | |
build: | |
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 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 export | |
id: docker_export | |
uses: docker/build-push-action@v5 | |
with: | |
file: ./${{ matrix.clamav }}/Dockerfile | |
build-args: | | |
BF_IMAGE=${{ env.REPOSITORY_NAME }} | |
BF_VERSION=${{ steps.version.outputs.contents }} | |
load: true | |
tags: ${{ env.TEST_TAG }} | |
- | |
name: Run tests | |
id: docker_test | |
run: | | |
docker run --entrypoint "/usr/bin/env" ${{ env.TEST_TAG }} -i nu -c "use bf test ; test" | |
- | |
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 }} | |
push: ${{ startsWith(github.ref, 'refs/heads/') }} | |
platforms: linux/amd64,linux/arm/v7,linux/arm64 | |
tags: | | |
bfren/clamav:clamav${{ matrix.clamav }}-dev | |
bfren/clamav:clamav${{ matrix.clamav }}-${{ steps.version.outputs.contents }}-dev | |
ghcr.io/bfren/clamav:clamav${{ matrix.clamav }}-dev | |
ghcr.io/bfren/clamav:clamav${{ matrix.clamav }}-${{ steps.version.outputs.contents }}-dev | |
- | |
name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |