Skip to content

remove s3-operator v0.2.x entries from candidate and stable channel #24

remove s3-operator v0.2.x entries from candidate and stable channel

remove s3-operator v0.2.x entries from candidate and stable channel #24

Workflow file for this run

name: Build and Push the Catalog
on:
push:
branches: [ main ]
jobs:
docker:
name: docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
with:
platforms: amd64
- uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/metadata-action@v4
id: meta
with:
images: ghcr.io/${{ github.repository }}
- uses: docker/build-push-action@v4
with:
file: "catalog.Dockerfile"
context: .
platforms: linux/amd64
push: true
tags: ghcr.io/${{ github.repository }}-catalog:latest
labels: ${{ steps.meta.outputs.labels }}