From f5b1655cf87f6496997a71296374039fd50154b9 Mon Sep 17 00:00:00 2001 From: Konstantin Astakhov Date: Tue, 30 Aug 2022 13:59:53 +0000 Subject: [PATCH] correct concurency group name for xcm-testnet --- --- a/.github/workflows/xcm-testnet.yml +++ b/.github/workflows/xcm-testnet.yml @@ -20,7 +20,7 @@ REPO_URL: ${{ github.server_url }}/${{ github.repository }} concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.head_ref }} cancel-in-progress: true # A workflow run is made up of one or more jobs that can run sequentially or in parallel @@ -127,17 +127,6 @@ - name: Build the stack run: cd .docker/ && docker build --file ./Dockerfile-xcm.${{ matrix.network }}.yml --tag xcm-nodes-${{ matrix.network }} --tag uniquenetwork/xcm-${{ matrix.network }}-testnet-local:nightly-${{ github.sha }} --tag uniquenetwork/xcm-${{ matrix.network }}-testnet-local:latest . - - # - name: Collect Docker Logs - # if: success() || failure() - # uses: jwalton/gh-docker-logs@v2.2.0 - # with: - # dest: './xcm-build-logs.${{ matrix.features }}' - # images: 'xcm-nodes-${{ matrix.network }}' - - # - name: Show docker logs - # if: success() || failure() - # run: cat './xcm-build-logs.${{ matrix.features }}/xcm-nodes-${{ matrix.network }}.log' - name: Log in to Docker Hub uses: docker/login-action@v2.0.0 -- gitstuff