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 24e1f16 commit 007b724Copy full SHA for 007b724
.github/workflows/sysdig-cli-scanner.yaml
@@ -94,3 +94,21 @@ jobs:
94
build-args: |
95
VERSION=${{ env.IMAGE_TAG }}
96
tags: ${{ env.REGISTRY_HOST }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
97
+
98
+ - name: Login to Quay.io
99
+ uses: docker/login-action@v3
100
+ with:
101
+ registry: quay.io
102
+ username: ${{ secrets.QUAY_USERNAME }}
103
+ password: ${{ secrets.QUAY_PASSWORD }}
104
105
+ - name: Build and push Docker image
106
+ id: build
107
+ uses: docker/build-push-action@v5
108
109
+ context: ${{ env.DOCKERFILE_CONTEXT }}
110
+ file: "${{ env.DOCKERFILE_CONTEXT }}Containerfile"
111
+ push: true
112
+ build-args: |
113
+ VERSION=${{ env.IMAGE_TAG }}
114
+ tags: quay.io/sysdig/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
0 commit comments