diff options
Diffstat (limited to 'src/fluent-bit/.github/workflows/build-branch-containers.yaml')
-rw-r--r-- | src/fluent-bit/.github/workflows/build-branch-containers.yaml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/fluent-bit/.github/workflows/build-branch-containers.yaml b/src/fluent-bit/.github/workflows/build-branch-containers.yaml new file mode 100644 index 000000000..ea5d3c6cd --- /dev/null +++ b/src/fluent-bit/.github/workflows/build-branch-containers.yaml @@ -0,0 +1,20 @@ +name: Build containers for a specific branch of 1.9+ +on: + workflow_dispatch: + inputs: + version: + description: Version of Fluent Bit to build, commit, branch, etc. The container image will be ghcr.io/fluent/fluent-bit/test/<this value>. + required: true + default: master +jobs: + build-branch-containers: + uses: ./.github/workflows/call-build-images.yaml + with: + version: ${{ github.event.inputs.version }} + ref: ${{ github.event.inputs.version }} + registry: ghcr.io + username: ${{ github.actor }} + image: ${{ github.repository }}/test/${{ github.event.inputs.version }} + unstable: ${{ github.event.inputs.version }} + secrets: + token: ${{ secrets.GITHUB_TOKEN }} |