Renovate
3f37e8c5bc
All checks were successful
Node npm / Build and push image (pull_request) Successful in 26s
Node ssh / Build and push image (pull_request) Successful in 1m7s
PHP 8.2 / Build and push image (pull_request) Successful in 27s
PHP deployer / Build and push image (pull_request) Successful in 28s
Rust node / Build and push image (pull_request) Successful in 1m34s
ZMK builder / Build and push image (pull_request) Successful in 2m6s
27 lines
815 B
YAML
27 lines
815 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@sha256:cfc3a7d39de50d5414ef460ba0e1fbf3acc7296b15df49e33d32a10ed39ab874
|
|
|
|
steps:
|
|
- name: Build Docker image
|
|
uses: https://git.kjan.de/actions/docker-build@68135ac7b8ac655fd9fc07cdf0486b6b3a184a97 # 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 }}
|