Skip to content

alias for 4.11 instead a full identical build #260

alias for 4.11 instead a full identical build

alias for 4.11 instead a full identical build #260

Workflow file for this run

name: CI
on:
pull_request:
jobs:
container-images:
name: Container images
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
fluentd:
- version: v1.16-4.8
- version: v1.16-4.9
- version: v1.16-4.10
alias: v1.16-4.11
- version: v1.17-5.0
image-type:
- base
- filters
- full
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up tags
id: tags
run: |
echo "IMAGE_TAGS<<EOF" >> $GITHUB_ENV
echo "type=raw,value=${{ matrix.fluentd.version }}-${{ matrix.image-type }}" >> $GITHUB_ENV
echo "type=raw,value=${{ matrix.fluentd.version }}-${{ matrix.image-type }}-build.${{ github.run_number }}" >> $GITHUB_ENV
if [[ -n "${{ matrix.fluentd.alias }}" ]]; then
echo "type=raw,value=${{ matrix.fluentd.alias }}-${{ matrix.image-type }}" >> $GITHUB_ENV
echo "type=raw,value=${{ matrix.fluentd.alias }}-${{ matrix.image-type }}-build.${{ github.run_number }}" >> $GITHUB_ENV
fi
echo "EOF" >> $GITHUB_ENV
- name: Gather metadata
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository_owner }}/fluentd
flavor: |
latest = false
tags: |
${{ env.IMAGE_TAGS }}
labels: |
org.opencontainers.image.description=Custom-built Fluentd image for the Logging operator
org.opencontainers.image.title=Fluentd docker image
org.opencontainers.image.authors=kube-logging authors
org.opencontainers.image.documentation=https://kube-logging.dev/docs/
org.opencontainers.image.version=${{ matrix.fluentd.version }}-${{ matrix.image-type }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ github.token }}
if: github.event_name == 'push'
- name: Build image (${{ matrix.image-type }})
uses: docker/build-push-action@v5
with:
context: ${{ matrix.fluentd.version }}
cache-from: type=gha
cache-to: type=gha,mode=max
push: false
tags: |
${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
tar

Check failure on line 78 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 78