From 823d50b686f911977593981e349ba2eb5d74455a Mon Sep 17 00:00:00 2001 From: Jan Gleytenhoover Date: Fri, 16 Aug 2024 12:11:17 +0000 Subject: [PATCH] Update .gitea/workflows/php-8.2.yaml --- .gitea/workflows/php-8.2.yaml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/php-8.2.yaml b/.gitea/workflows/php-8.2.yaml index 944f9dc..ad12b69 100644 --- a/.gitea/workflows/php-8.2.yaml +++ b/.gitea/workflows/php-8.2.yaml @@ -1,12 +1,16 @@ name: PHP 8.2 +# Variable for the image name +env: + image_name: php-8.2 + on: schedule: - cron: "@weekly" push: branches: [main] paths: - - .gitea/workflows/php-8.2.yaml - - images/actions/php-8.2/** + - .gitea/workflows/${{ env.image_name }}.yaml + - images/actions/${{ env.image_name }}/** pull_request: jobs: @@ -39,20 +43,20 @@ jobs: uses: actions/cache@v4 with: path: /tmp/.buildx-cache - key: ${{ runner.os }}-php-8-2-${{ github.sha }} + key: ${{ runner.os }}-${{ env.image_name }}-${{ github.sha }} restore-keys: | - ${{ runner.os }}-php-8-2- + ${{ runner.os }}-${{ env.image_name }}- - name: Build and push uses: https://git.kjan.de/actions/build-push-action@v6 with: cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max - context: ./images/actions/php-8.2 + context: ./images/actions/${{ env.image_name }} push: ${{ github.ref == 'refs/heads/main' }} tags: | - git.kjan.de/actions/php-8.2:latest - git.kjan.de/actions/php-8.2:${{ gitea.sha }} + git.kjan.de/actions/${{ env.image_name }}:latest + git.kjan.de/actions/${{ env.image_name }}:${{ gitea.sha }} - # Temp fix # https://github.com/docker/build-push-action/issues/252 @@ -60,5 +64,4 @@ jobs: name: Move cache run: | rm -rf /tmp/.buildx-cache - mv /tmp/.buildx-cache-new /tmp/.buildx-cache - + mv /tmp/.buildx-cache-new /tmp/.buildx-cache