Skip to content

Commit e05f1cb

Browse files
committed
test update
1 parent 72a3587 commit e05f1cb

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,23 @@ jobs:
145145
if: github.event.inputs.push_images != 'false'
146146

147147
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+
148165
- name: Test Python version
149166
run: |
150167
docker run --rm ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:secure-latest python --version

0 commit comments

Comments
 (0)