Skip to content

Initial commit with clean history #12

Initial commit with clean history

Initial commit with clean history #12

Workflow file for this run

name: Build PHP-FPM 8.4 Images
on:
push:
branches:
- 'master'
paths:
- 'php-fpm/8.4/**'
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
jobs:
php_fpm_84_amd64:
name: Php-fpm (8.4) 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.4, 8.4-amd64"
workdir: php-fpm/8.4
php_fpm_84_arm64:
name: Php-fpm (8.4) 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.4-arm64"
workdir: php-fpm/8.4