Skip to content

fluent-bit

fluent-bit #131

Workflow file for this run

name: fluent-bit
on:
schedule:
- cron: "00 01 * * 1-5"
pull_request:
paths:
- .github/workflows/fluent-bit.yaml
- 'images/fluent-bit/*.yaml'
- 'images/fluent-bit/**/*.yaml'
push:
branches:
- 'main'
paths:
- .github/workflows/fluent-bit.yaml
- 'images/fluent-bit/*.yaml'
- 'images/fluent-bit/**/*.yaml'
workflow_dispatch:
permissions:
contents: read
packages: write
attestations: write
id-token: write
security-events: write
actions: read
jobs:
publish:
strategy:
matrix:
version: [latest, "4.0", "4.0.3", "4.0.2", "4.0.0"]
variant: [prod, shell]
name: ${{ matrix.version }}${{ matrix.variant == 'shell' && '-shell' || '' }}
uses: './.github/workflows/release.yaml'
with:
tag: ${{ matrix.version }}${{ matrix.variant == 'shell' && '-shell' || '' }}
target: ${{ matrix.variant }}
packages: >-
${{ matrix.version != 'latest' && format('fluent-bit~{0}', matrix.version) || '' }}
secrets: inherit