difftreelog
change trugger for xcm-tests
in: master
2 files changed
.github/workflows/xcm-testnet-build.ymldiffbeforeafterboth--- a/.github/workflows/xcm-testnet-build.yml
+++ b/.github/workflows/xcm-testnet-build.yml
@@ -144,12 +144,16 @@
- name: Build the stack
run: cd .docker/ && docker build --no-cache --file ./Dockerfile-xcm.${{ matrix.network }}.yml --tag uniquenetwork/xcm-${{ matrix.network }}-testnet-local:nightly-${{ steps.branchname.outputs.value }}-${{ github.sha }} --tag uniquenetwork/xcm-${{ matrix.network }}-testnet-local:latest .
- - name: Push docker version image
+ - name: Push docker image version
run: docker push uniquenetwork/xcm-${{ matrix.network }}-testnet-local:nightly-${{ steps.branchname.outputs.value }}-${{ github.sha }}
- name: Push docker image latest
run: docker push uniquenetwork/xcm-${{ matrix.network }}-testnet-local:latest
+ - name: Clean Workspace
+ if: always()
+ uses: AutoModality/action-clean@v1.1.0
+
- name: Remove builder cache
if: always() # run this step always
run: |
.github/workflows/xcm-tests.ymldiffbeforeafterboth7 workflows: ["xcm-testnet-build"]7 workflows: ["xcm-testnet-build"]8 types: [requested] 8 types: [requested] 9 # Triggers the workflow on push or pull request events but only for the master branch9 # Triggers the workflow on push or pull request events but only for the master branch10 # pull_request:10 pull_request:11 # branches:11 branches:12 # - master12 - master13 # types:13 types:14 # - opened14 - opened15 # - reopened15 - reopened16 # - synchronize #commit(s) pushed to the pull request16 - synchronize #commit(s) pushed to the pull request17 # - ready_for_review17 - ready_for_review181819 # Allows you to run this workflow manually from the Actions tab19 # Allows you to run this workflow manually from the Actions tab20 workflow_dispatch:20 workflow_dispatch:212122#Define Workflow variables22#Define Workflow variables178 if: always() # run this step always178 if: always() # run this step always179 run: docker-compose -f ".docker/docker-compose.xcm-tests.${{ matrix.network }}.yml" down179 run: docker-compose -f ".docker/docker-compose.xcm-tests.${{ matrix.network }}.yml" down180181 - name: Remove builder cache182 if: always() # run this step always183 run: |184 docker system prune -a -f185180186 - name: Clean Workspace181 - name: Clean Workspace187 if: always()182 if: always()188 uses: AutoModality/action-clean@v1.1.0183 uses: AutoModality/action-clean@v1.1.0184185 - name: Remove builder cache186 if: always() # run this step always187 run: |188 docker system prune -a -f189189190