Skip to content

Initial commit with clean history #11

Initial commit with clean history

Initial commit with clean history #11

Workflow file for this run

name: Build PHP-FPM 8.3 Images
on:
push:
branches:
- 'master'
paths:
- 'php-fpm/8.3/**'
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
jobs:
php_fpm_83_amd64:
name: Php-fpm (8.3) amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Create image
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: imagination-media/magento-k8s/php-fpm
username: igor-imaginemage
password: ${{ secrets.NODE_AUTH_TOKEN }}
registry: ghcr.io
tags: "8.3, 8.3-amd64"
workdir: php-fpm/8.3
php_fpm_83_arm64:
name: Php-fpm (8.3) arm64
runs-on: buildjet-2vcpu-ubuntu-2204-arm
steps:
- uses: actions/checkout@master
- name: Create image
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: imagination-media/magento-k8s/php-fpm
username: igor-imaginemage
password: ${{ secrets.NODE_AUTH_TOKEN }}
registry: ghcr.io
tags: "8.3-arm64"
workdir: php-fpm/8.3