Skip to content

Commit

Permalink
update gh docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesamcl committed Nov 7, 2024
1 parent 350ef29 commit 35454ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 35454ed

Please sign in to comment.