Skip to content

Bump the non-major group across 1 directory with 2 updates (#50) #235

Bump the non-major group across 1 directory with 2 updates (#50)

Bump the non-major group across 1 directory with 2 updates (#50) #235

Workflow file for this run

name: docker-build
on:
push:
pull_request:
workflow_dispatch:
permissions: {}
jobs:
docker-build:
runs-on: ubuntu-latest
strategy:
matrix:
params:
- ''
- DOCKER_FILE=Dockerfile.debian DOCKER_TAG_SUFFIX=-debian
fail-fast: false
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: download
key: download-${{ hashFiles('checksums.mk') }}
fail-on-cache-miss: true
- uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
if: startsWith(github.ref, 'refs/tags/')
- run: |
if [[ "$GITHUB_REF" == refs/tags/* ]]; then
echo "MAKE_ACTION=docker-push" >> $GITHUB_ENV
else
echo "MAKE_ACTION=docker-test" >> $GITHUB_ENV
fi
- run: make "$MAKE_ACTION" ${{ matrix.params }}