From 866e2d99ad2653a18357977207b94c84702395d5 Mon Sep 17 00:00:00 2001 From: rjonczy Date: Thu, 18 Apr 2024 13:00:05 +0200 Subject: [PATCH] update ci builds --- .github/workflows/docker-build.yml | 40 +++++++++++++++++++++++------- 1 file changed, 31 insertions(+), 9 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 615cd2f..0a40b1e 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -32,20 +32,42 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Extract metadata (branch, tags, sha) - id: meta - uses: docker/metadata-action@v4 + - name: Extract metadata (tags, labels) for Docker (tag) + id: meta-tag + if: github.ref_type == 'tag' + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: | - type=raw,value=${{ github.ref_name }}-${{ github.run_id }}-${{ github.sha }} - type=semver,pattern=v* + type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} + type=semver,pattern={{major}} - - name: Build and Push Docker Image - uses: docker/build-push-action@v3 + - name: Extract metadata (tags, labels) for Docker (branch) + id: meta-branch + if: github.ref_type == 'branch' + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + tags: | + type=ref,event=branch + type=sha,prefix={{branch}}-{{date 'YYYYMMDDHHmmss'}}- + + - name: Build and Push Docker Image (tag) + if: github.ref_type == 'tag' + uses: docker/build-push-action@v5 + with: + context: . + push: true + tags: ${{ steps.meta-tag.outputs.tags }} + labels: ${{ steps.meta-tag.outputs.labels }} + + - name: Build and Push Docker Image (branch) + if: github.ref_type == 'branch' + uses: docker/build-push-action@v5 with: context: . push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} + tags: ${{ steps.meta-branch.outputs.tags }} + labels: ${{ steps.meta-branch.outputs.labels }}