We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6c1e5f commit c0d005cCopy full SHA for c0d005c
.github/workflows/deploy-image.yml
@@ -36,3 +36,20 @@ jobs:
36
push: true
37
tags: ${{ steps.meta.outputs.tags }}
38
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