From e7c1df5eb1e53c3e9dbafce8b0e23a781bb41ed7 Mon Sep 17 00:00:00 2001 From: lubiana Date: Tue, 17 Oct 2023 20:54:50 +0200 Subject: [PATCH] test --- .forgejo/workflows/push.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/push.yml b/.forgejo/workflows/push.yml index 626da53..b1cc316 100644 --- a/.forgejo/workflows/push.yml +++ b/.forgejo/workflows/push.yml @@ -10,13 +10,18 @@ jobs: id: composer-cache run: | echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache/restore@v3 + id: restore-cache with: path: ${{ steps.composer-cache.outputs.dir }} - key: gute-laune - restore-keys: | - gute-laune + key: composer-cache - run: composer install + - uses: actions/cache/save@v3 + id: save-cache + if: steps.restore-cache.outpus.cache-hit != 'true + with: + path: ${{ steps.composer-cache.outputs.dir }} + key: composer-cache - run: composer fix - name: GIT commit and push all changed files env: