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 f1c329b commit a14b240Copy full SHA for a14b240
.github/workflows/container.yml
@@ -25,10 +25,17 @@ jobs:
25
username: ${{ github.actor }}
26
password: ${{ secrets.GITHUB_TOKEN }}
27
28
+ - name: Extract Docker metadata
29
+ id: meta
30
+ uses: docker/metadata-action@v5
31
+ with:
32
+ images: ghcr.io/${{ github.repository_owner }}/mutants
33
+
34
- name: Build and push container image
35
uses: docker/build-push-action@v6
36
with:
37
context: .
38
push: true
39
platforms: linux/amd64,linux/arm64
- tags: ghcr.io/${{ github.repository_owner }}/mutants:latest
40
+ tags: ${{ steps.meta.outputs.tags }}
41
+ labels: ${{ steps.meta.outputs.labels }}
0 commit comments