difftreelog
Update forkless-update-data_v2.yml
in: master
1 file changed
.github/workflows/forkless-update-data_v2.ymldiffbeforeafterboth1# Controls when the action will run.1# Forkless update with data replication2# https://cryptousetech.atlassian.net/browse/CI-4234# Triger: only call from main workflow(re-usable workflows)2on:5on:3 workflow_call:6 workflow_call:47586#Define Workflow variables9# A workflow run is made up of one or more jobs that can run sequentially or in parallel7env:8 REPO_URL: ${{ github.server_url }}/${{ github.repository }}910# A workflow run is made up of one or more jobs that can run sequentially or in parallel11jobs:10jobs:121113 execution-marix:12 execution-marix:164 if: always() # run this step always163 if: always() # run this step always165 run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down --volumes164 run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down --volumes165 166 - name: Remove builder cache167 if: always() # run this step always168 run: |169 docker builder prune -f -a170 docker system prune -f171 docker image prune -f -a166172