Skip to content

Commit

Permalink
chore: update action
Browse files Browse the repository at this point in the history
  • Loading branch information
jaluma committed Aug 2, 2024
1 parent e003d8f commit d82055f
Showing 1 changed file with 5 additions and 19 deletions.
24 changes: 5 additions & 19 deletions .github/workflows/generate-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ env:
REGISTRY: docker.io
IMAGE_NAME: ${{ github.repository }}
platforms: linux/amd64,linux/arm64
DEFAULT_TYPE: "external"

jobs:
build-and-push-image:
Expand Down Expand Up @@ -48,34 +49,19 @@ jobs:
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{version}},enable=${{ matrix.type == env.DEFAULT_COMBINATION }}
type=semver,pattern={{version}}-${{ matrix.type }},priority=500
type=raw,value=latest,enable=${{ matrix.type == env.DEFAULT_COMBINATION }}
type=sha
- name: Extract metadata (tags, labels) for Docker
id: tagging
uses: HackerHappyHour/tagging-strategy@v3
with:
image_name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tag_name: ${{ github.event.release.tag_name }}
tags: |
%X%-${{ matrix.type}}
%X.Y%-${{ matrix.type}}
%X.Y.Z%-${{ matrix.type}}
extra_tags: |
latest::${{ matrix.type == 'external'}}
%X%::${{ matrix.type == 'external'}}
%X.Y%::${{ matrix.type == 'external'}}
%X.Y.Z%::${{ matrix.type == 'external'}}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile.${{ matrix.type }}
platforms: ${{ env.platforms }}
push: true
tags: |
${{ steps.tagging.outputs.tags }}
${{ steps.meta.outputs.tags }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Version output
Expand Down

0 comments on commit d82055f

Please sign in to comment.