difftreelog
change trugger for xcm-tests
in: master
2 files changed
.github/workflows/xcm-testnet-build.ymldiffbeforeafterboth144 - name: Build the stack144 - name: Build the stack145 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 .145 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 .146146147 - name: Push docker version image 147 - name: Push docker image version148 run: docker push uniquenetwork/xcm-${{ matrix.network }}-testnet-local:nightly-${{ steps.branchname.outputs.value }}-${{ github.sha }}148 run: docker push uniquenetwork/xcm-${{ matrix.network }}-testnet-local:nightly-${{ steps.branchname.outputs.value }}-${{ github.sha }}149149150 - name: Push docker image latest150 - name: Push docker image latest151 run: docker push uniquenetwork/xcm-${{ matrix.network }}-testnet-local:latest151 run: docker push uniquenetwork/xcm-${{ matrix.network }}-testnet-local:latest152153 - name: Clean Workspace154 if: always()155 uses: AutoModality/action-clean@v1.1.0152156153 - name: Remove builder cache157 - name: Remove builder cache154 if: always() # run this step always158 if: always() # run this step always.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