2024-05-09 20:01:23 +00:00
|
|
|
name: Build Runner Php
|
2024-05-09 19:59:46 +00:00
|
|
|
|
|
|
|
on:
|
2024-05-09 21:08:01 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
2024-05-09 19:59:46 +00:00
|
|
|
|
2024-05-09 21:08:01 +00:00
|
|
|
jobs:
|
2024-05-09 19:59:46 +00:00
|
|
|
build_php:
|
|
|
|
runs-on: 'priviliged'
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-07-03 01:25:10 +00:00
|
|
|
version: [8.2, 8.3]
|
2024-05-09 19:59:46 +00:00
|
|
|
steps:
|
|
|
|
- name: Install Docker
|
|
|
|
run: |
|
|
|
|
rm $(which docker) && curl -fsSL https://get.docker.com | sh
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
|
|
|
|
- name: Setup Buildx
|
|
|
|
uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3'
|
|
|
|
- name: Login to Registry
|
|
|
|
uses: 'https://git.euph.dev/actions/docker-login@v3'
|
|
|
|
with:
|
|
|
|
registry: git.euph.dev
|
|
|
|
username: ${{ secrets.DEPLOY_USER }}
|
|
|
|
password: ${{ secrets.DEPLOY_SECRET }}
|
|
|
|
- name: Build and push php image
|
|
|
|
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
|
|
|
with:
|
|
|
|
context: "{{defaultContext}}:images/actions/php"
|
|
|
|
push: true
|
|
|
|
build-args: PACKAGE_VERSION=${{ matrix.version }}
|
|
|
|
tags: |
|
|
|
|
git.euph.dev/actions/runner-php-${{ matrix.version }}:latest
|
|
|
|
git.euph.dev/actions/runner-php-${{ matrix.version }}:${{ gitea.run_number }}
|