Skip to content

build and push fluentbit #9

build and push fluentbit

build and push fluentbit #9

Workflow file for this run

name: publish
on:
push:
branches:
- docker-limit
jobs:
publish-hello-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push the hello-docker Docker image
run: |
docker pull cr.fluentbit.io/fluent/fluent-bit:3.1.9
docker image tag cr.fluentbit.io/fluent/fluent-bit:3.1.9 ghcr.io/obmondo/fluent-bit:3.1.9
docker push ghcr.io/obmondo/fluent-bit:3.1.9