parent
90ce46d9d1
commit
e7c1df5eb1
1 changed files with 9 additions and 4 deletions
|
@ -10,13 +10,18 @@ jobs:
|
||||||
id: composer-cache
|
id: composer-cache
|
||||||
run: |
|
run: |
|
||||||
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
||||||
- uses: actions/cache@v3
|
- uses: actions/cache/restore@v3
|
||||||
|
id: restore-cache
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.composer-cache.outputs.dir }}
|
path: ${{ steps.composer-cache.outputs.dir }}
|
||||||
key: gute-laune
|
key: composer-cache
|
||||||
restore-keys: |
|
|
||||||
gute-laune
|
|
||||||
- run: composer install
|
- 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
|
- run: composer fix
|
||||||
- name: GIT commit and push all changed files
|
- name: GIT commit and push all changed files
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in a new issue