From 35454ed047e860085deb66e116a3cf591e3ddd7a Mon Sep 17 00:00:00 2001 From: James McLaughlin Date: Thu, 7 Nov 2024 18:01:06 +0000 Subject: [PATCH] update gh docker workflow --- .github/workflows/docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 20e5776..856e802 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -27,28 +27,28 @@ jobs: - name: Build and push GrEBI API Docker image run: | - cd grebi_api + cd webapp/grebi_api docker build -t ghcr.io/ebispot/grebi_api:${{ github.sha }} . docker tag ghcr.io/ebispot/grebi_api:${{github.sha}} ghcr.io/ebispot/grebi_api:${{ github.ref_name }} docker push --all-tags ghcr.io/ebispot/grebi_api - name: Build and push GrEBI resolver service Docker image run: | - cd grebi_resolver_service + cd webapp/grebi_resolver_service docker build -t ghcr.io/ebispot/grebi_resolver_service:${{ github.sha }} . docker tag ghcr.io/ebispot/grebi_resolver_service:${{github.sha}} ghcr.io/ebispot/grebi_resolver_service:${{ github.ref_name }} docker push --all-tags ghcr.io/ebispot/grebi_resolver_service - name: Build and push GrEBI summary service Docker image run: | - cd grebi_summary_service + cd webapp/grebi_summary_service docker build -t ghcr.io/ebispot/grebi_summary_service:${{ github.sha }} . docker tag ghcr.io/ebispot/grebi_summary_service:${{github.sha}} ghcr.io/ebispot/grebi_summary_service:${{ github.ref_name }} docker push --all-tags ghcr.io/ebispot/grebi_summary_service - name: Build and push GrEBI UI Docker image run: | - cd grebi_ui + cd webapp/grebi_ui docker build -t ghcr.io/ebispot/grebi_ui:${{ github.sha }} . docker tag ghcr.io/ebispot/grebi_ui:${{github.sha}} ghcr.io/ebispot/grebi_ui:${{ github.ref_name }} docker push --all-tags ghcr.io/ebispot/grebi_ui