Skip to content

Commit

Permalink
Update base image and tagging strategy in Docker release workflow
Browse files Browse the repository at this point in the history
Simplified the base images for Docker tags by removing redundancy. Switched from multi-line to single-line image specification. Previous tagging strategy dependent on various events/attributes is streamlined to only associate Docker tags based on branch, pull request and semantic versions. This simplifies the release process.
  • Loading branch information
Denis Smet committed Mar 12, 2024
1 parent 84d3d60 commit 2a90765
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/release-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,8 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
# List of Docker images to use as base name for tags
images: |
jbzoo/csv-blueprint
ghcr.io/username/app
# Generate Docker tags based on the following events/attributes
images: jbzoo/csv-blueprint
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
Expand Down

0 comments on commit 2a90765

Please sign in to comment.