Skip to content

Commit

Permalink
Add metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
rradczewski committed May 23, 2024
1 parent e3802ab commit 1b7bd3b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,28 @@ jobs:
id: trunkver
uses: crftd-tech/trunkver@main

- name: Generate metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/crftd-tech/trunkver
tags: |
type=semver,pattern={{version}},value=${{ steps.trunkver.outputs.trunkver }}
type=semver,pattern={{major}},value=${{ steps.trunkver.outputs.trunkver }}
type=raw,value=${{ steps.trunkver.outputs.trunkver }}
type=raw,value=latest
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: "ghcr.io"
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: .
push: true
tags: "ghcr.io/crftd-tech/trunkver:latest,ghcr.io/crftd-tech/trunkver:${{ steps.trunkver.outputs.trunkver }}"
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 1b7bd3b

Please sign in to comment.