Skip to content

Commit

Permalink
Update cicd_docker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alavenant authored Jul 10, 2024
1 parent 479d2f8 commit 332b023
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cicd_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ permissions:
env:
IMAGE_NAME: ${{ github.repository }}
REGISTRY: ghcr.io
DOCKER_IMAGE_NAME: pdal_ign_plugin

jobs:
build_docker_image_and_run_tests:
Expand Down Expand Up @@ -55,7 +56,7 @@ jobs:
# pull and test
- name : Pull Docker image
id: pull-image
run: docker pull ${{ env.IMAGE_NAME }}:${{ steps.meta.outputs.tags }}
run: docker pull ${{ env.DOCKER_IMAGE_NAME }}${{ steps.meta.outputs.tags }}
- name : Test Docker image
id: test-image
run: docker run ${{ env.IMAGE_NAME }}:test python -m pytest
run: docker run ${{ env.DOCKER_IMAGE_NAME }}${{ steps.meta.outputs.tags }} python -m pytest

0 comments on commit 332b023

Please sign in to comment.