Skip to content

Commit c0d005c

Browse files
committed
actually deactivate conda CI
1 parent d6c1e5f commit c0d005c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/deploy-image.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,20 @@ jobs:
3636
push: true
3737
tags: ${{ steps.meta.outputs.tags }}
3838
labels: ${{ steps.meta.outputs.labels }}
39+
40+
test-shapepipe-image:
41+
runs-on: ubuntu-latest
42+
needs: build-and-push-image
43+
steps:
44+
- name: Log in to the Container registry
45+
uses: docker/login-action@v3
46+
with:
47+
registry: ${{ env.REGISTRY }}
48+
username: ${{ github.actor }}
49+
password: ${{ secrets.GITHUB_TOKEN }}
50+
51+
- name: Pull Docker Image
52+
run: docker pull ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
53+
54+
- name: Test Shapepipe
55+
run: docker run --rm ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest shapepipe_run -c /app/example/config.ini

0 commit comments

Comments
 (0)