Skip to content

Bump docker/build-push-action from 6.5.0 to 6.7.0 #102

Bump docker/build-push-action from 6.5.0 to 6.7.0

Bump docker/build-push-action from 6.5.0 to 6.7.0 #102

Workflow file for this run

name: Build Docker images
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
#version: [latest, 10, 12, 14, 15, 16, 18]
#distro: [ buster, bullseye, alpine ]
version: [latest, 16, 18]
distro: [ alpine ]
env:
repo: "govpf/node"
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Check file existence
id: check_files
uses: andstor/file-existence-action@v3
with:
files: ${{ matrix.version }}/${{ matrix.distro }}/Dockerfile
- name: Compute tags
if: steps.check_files.outputs.files_exists == 'true'
env:
repo: ${{ env.repo }}
version: ${{ matrix.version }}
distro: ${{ matrix.distro }}
run: |
TAGS="${repo}:${version}-${distro}"
if [[ $distro == 'bullseye' ]]; then
TAGS+=",${repo}:${version}"
fi
echo 'docker_tags<<EOF' >> $GITHUB_ENV
echo "$TAGS" >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: Build and push
if: steps.check_files.outputs.files_exists == 'true'
uses: docker/[email protected]
with:
context: .
file: ./${{ matrix.version }}/${{ matrix.distro }}/Dockerfile
platforms: linux/amd64
pull: true
push: false
tags: ${{ env.docker_tags }}