We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72a3587 commit e05f1cbCopy full SHA for e05f1cb
1 file changed
.github/workflows/build.yml
@@ -145,6 +145,23 @@ jobs:
145
if: github.event.inputs.push_images != 'false'
146
147
steps:
148
+ - name: Checkout
149
+ uses: actions/checkout@v4
150
+
151
+ - name: Set up Docker Buildx
152
+ uses: docker/setup-buildx-action@v3
153
154
+ - name: Log in to Container Registry
155
+ uses: docker/login-action@v3
156
+ with:
157
+ registry: ${{ env.REGISTRY }}
158
+ username: ${{ github.actor }}
159
+ password: ${{ secrets.GITHUB_TOKEN }}
160
161
+ - name: Pull Docker image for testing
162
+ run: |
163
+ docker pull ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:secure-latest
164
165
- name: Test Python version
166
run: |
167
docker run --rm ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:secure-latest python --version
0 commit comments