Skip to content

Commit

Permalink
fix: rename docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
annehaley committed Jun 19, 2024
1 parent 50cfc3a commit 0b4df24
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ on:
- main
pull_request:


jobs:
geotrame-viewer:
pan3d-geotrame:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -25,9 +24,9 @@ jobs:
context: .
file: docker/Dockerfile
push: ${{ github.actor != 'dependabot[bot]' }}
tags: kitware/trame:geotrame-viewer
tags: kitware/trame:pan3d-geotrame

geotrame-cloud:
pan3d-cloud:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -36,12 +35,12 @@ jobs:
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push the Docker image
uses: docker/build-push-action@v3
with:
context: .
file: docker/cloud.Dockerfile
push: ${{ github.actor != 'dependabot[bot]' }}
tags: kitware/trame:geotrame-cloud
tags: kitware/trame:pan3d-cloud

0 comments on commit 0b4df24

Please sign in to comment.