runner-images/.gitea/workflows/php-deployer.yaml

64 lines
1.9 KiB
YAML
Raw Normal View History

name: PHP deployer
on:
schedule:
- cron: "@weekly"
push:
branches: [main]
paths:
- .gitea/workflows/php-deployer.yaml
- images/actions/php-deployer/**
pull_request:
2024-07-11 17:54:05 +00:00
jobs:
build:
name: Build and push image
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: https://git.kjan.de/actions/checkout@v4
2024-07-11 17:54:05 +00:00
- name: Set up Docker Buildx
uses: https://git.kjan.de/actions/setup-buildx-action@v3
2024-07-11 17:54:05 +00:00
- name: Login to local Docker Registry
uses: https://git.kjan.de/actions/login-action@v3
2024-07-11 17:54:05 +00:00
with:
registry: git.kjan.de
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Login to Docker.io Registry
uses: https://git.kjan.de/actions/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
2024-07-11 17:54:05 +00:00
- name: Build and push
uses: https://git.kjan.de/actions/build-push-action@v6
2024-07-11 17:54:05 +00:00
with:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
2024-07-11 17:54:05 +00:00
context: ./images/actions/php-deployer
push: ${{ github.ref == 'refs/heads/main' }}
2024-07-11 17:54:05 +00:00
tags: |
git.kjan.de/actions/php-deployer:latest
git.kjan.de/actions/php-deployer:${{ gitea.run_number }}
- # Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache