Skip to content

Initial commit with clean history #19

Initial commit with clean history

Initial commit with clean history #19

Workflow file for this run

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