Update .gitea/workflows/php-deployer.yaml
All checks were successful
Node npm / Build and push image (pull_request) Successful in 45s
Node ssh / Build and push image (pull_request) Successful in 2m25s
PHP 8.2 / Build and push image (pull_request) Successful in 1m21s
PHP deployer / Build and push image (pull_request) Successful in 1m1s
Rust node / Build and push image (pull_request) Successful in 7m7s

This commit is contained in:
Jan Gleytenhoover 2024-08-15 15:27:35 +00:00
parent 62bb668a17
commit 0a833a8b31

@ -35,11 +35,29 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} 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-
- name: Build and push - name: Build and push
uses: https://git.kjan.de/actions/build-push-action@v6 uses: https://git.kjan.de/actions/build-push-action@v6
with: with:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
context: ./images/actions/php-deployer context: ./images/actions/php-deployer
push: ${{ github.ref == 'refs/heads/main' }} push: ${{ github.ref == 'refs/heads/main' }}
tags: | tags: |
git.kjan.de/actions/php-deployer:latest git.kjan.de/actions/php-deployer:latest
git.kjan.de/actions/php-deployer:${{ gitea.run_number }} 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