runner-images/.gitea/workflows/php-deployer.yaml
jank 7af3ffd329
All checks were successful
Node npm / Build and push image (pull_request) Successful in 35s
PHP 8.2 / Build and push image (pull_request) Successful in 52s
Node ssh / Build and push image (pull_request) Successful in 1m39s
PHP deployer / Build and push image (pull_request) Successful in 37s
Rust node / Build and push image (pull_request) Successful in 1m43s
ZMK builder / Build and push image (pull_request) Successful in 1m47s
Use new action
2024-08-16 21:16:09 +02:00

27 lines
700 B
YAML

name: PHP deployer
on:
schedule:
- cron: "@weekly"
push:
branches: [main]
paths:
- .gitea/workflows/php-deployer.yaml
- images/actions/php-deployer/**
pull_request:
jobs:
build:
name: Build and push image
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- name: Build Docker image
uses: https://git.kjan.de/actions/docker-build@v1
with:
name: php-deployer
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}