Skip to content

Commit

Permalink
build: move "Remove Docker volumes" step to top
Browse files Browse the repository at this point in the history
  • Loading branch information
frugan-dev committed Jun 18, 2024
1 parent 54f8b87 commit bb17c1b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:
- name: Set up Docker
uses: docker/setup-buildx-action@v1

- name: Remove Docker volumes
run: |
docker volume rm mariadb_data wordpress_data mailpit_data || true
- name: Cache Docker layers
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -138,7 +142,3 @@ jobs:

- name: Run Makefile 'down' task
run: make down

- name: Remove Docker volumes
run: |
docker volume rm mariadb_data wordpress_data mailpit_data || true

0 comments on commit bb17c1b

Please sign in to comment.