From c6e212b9de20bfc609299808641ccfe5d2d91f65 Mon Sep 17 00:00:00 2001 From: Mathew Richmond Date: Tue, 17 Oct 2023 13:10:47 -0700 Subject: [PATCH] Bugfix: fix tags and labels... oops --- .github/workflows/build.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f0fce3e08d..c23bc03bb4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -190,8 +190,8 @@ jobs: file: ./docker/libp2p-orchestrator.Dockerfile platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.webserver.outputs.tags }} - labels: ${{ steps.webserver.outputs.labels }} + tags: ${{ steps.libp2p-orchestrator.outputs.tags }} + labels: ${{ steps.libp2p-orchestrator.outputs.labels }} - name: Build and push libp2p-validator docker uses: docker/build-push-action@v5 @@ -200,8 +200,8 @@ jobs: file: ./docker/libp2p-validator.Dockerfile platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.webserver.outputs.tags }} - labels: ${{ steps.webserver.outputs.labels }} + tags: ${{ steps.libp2p-validator.outputs.tags }} + labels: ${{ steps.libp2p-validator.outputs.labels }} - name: Build and push web-server docker uses: docker/build-push-action@v5 @@ -210,8 +210,8 @@ jobs: file: ./docker/web-server.Dockerfile platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.webserver.outputs.tags }} - labels: ${{ steps.webserver.outputs.labels }} + tags: ${{ steps.web-server.outputs.tags }} + labels: ${{ steps.web-server.outputs.labels }} - name: Build and push web-server-da-orchestrator docker uses: docker/build-push-action@v5 @@ -220,8 +220,8 @@ jobs: file: ./docker/web-server-da-orchestrator.Dockerfile platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.webserver.outputs.tags }} - labels: ${{ steps.webserver.outputs.labels }} + tags: ${{ steps.web-server-da-orchestrator.outputs.tags }} + labels: ${{ steps.web-server-da-orchestrator.outputs.labels }} - name: Build and push web-server-da-validator docker uses: docker/build-push-action@v5 @@ -230,5 +230,5 @@ jobs: file: ./docker/web-server-da-validator.Dockerfile platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.webserver.outputs.tags }} - labels: ${{ steps.webserver.outputs.labels }} + tags: ${{ steps.web-server-da-validator.outputs.tags }} + labels: ${{ steps.web-server-da-validator.outputs.labels }}