Skip to content

ci: add attestations #48

ci: add attestations

ci: add attestations #48

Workflow file for this run

name: Build and push image to registry
on:
push:
schedule:
- cron: "0 10 * * 1"
workflow_dispatch:
jobs:
build:
name: PHP ${{ matrix.php-version }}
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
php-version:
- 8.2
- 8.4
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: code4romania/php
tags: ${{ matrix.php-version }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login to the container registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
builder: ${{ steps.buildx.outputs.name }}
file: ${{ matrix.php-version }}/Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
no-cache: true
provenance: mode=max
sbom: true
push: ${{ github.ref == 'refs/heads/main' }}