We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33996ac commit 3c5e6ffCopy full SHA for 3c5e6ff
.github/workflows/docker-publish.yml
@@ -26,6 +26,12 @@ jobs:
26
DOCKER_USER: ${{secrets.DOCKER_USER}}
27
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
28
run: docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
29
+ - name: Clear docker cache if Wed
30
+ run: |
31
+ if [ $(date +%a) == "Wed" ] then
32
+ docker system prune -f
33
+ fi
34
+ shell: bash
35
- name: Copy .env.sample to .env
36
run: cp .env.sample .env
37
- name: For php8.1
0 commit comments