Skip to content

Commit

Permalink
fix: remove container after tests
Browse files Browse the repository at this point in the history
  • Loading branch information
plexoos committed Apr 26, 2024
1 parent 928acba commit 105a4ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ jobs:
- name: Run tests
run: |
docker load --input /tmp/esi-opticks-${{ env.TAG }}.tar
docker run ${{ env.IMAGE_NAME }}:${{ env.TAG }} bash -l -c opticks-info
docker run --rm ${{ env.IMAGE_NAME }}:${{ env.TAG }} bash -l -c opticks-info
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
cache-to: type=inline

- name: Run tests
run: docker run ${{ env.IMAGE_NAME }}:latest curl --version
run: docker run --rm ${{ env.IMAGE_NAME }}:latest curl --version

- name: Declare latest and push
run: docker push ${{ env.IMAGE_NAME }}:latest
Expand Down

0 comments on commit 105a4ba

Please sign in to comment.