We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c860e19 commit 204b829Copy full SHA for 204b829
.github/workflows/build-image.yml
@@ -23,11 +23,15 @@ jobs:
23
registry: ${{ env.REGISTRY }}
24
username: ${{ github.actor }}
25
password: ${{ secrets.GITHUB_TOKEN }}
26
+ - name: Checkout
27
+ uses: actions/checkout@v4
28
+ - name: Set up Docker Buildx
29
+ uses: docker/setup-buildx-action@v3
30
- name: Build and push Docker image
31
id: push
32
uses: docker/build-push-action@v6
33
with:
- context: "{{defaultContext:images}}"
34
+ context: ./images
35
file: slingshot-scanner
36
push: true
37
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
0 commit comments