Skip to content

Remove duplicate manifest file #7

Remove duplicate manifest file

Remove duplicate manifest file #7

Workflow file for this run

name: Build Boundless Operator Docker Image
on:
push:
branches: [ "main" ]
pull_request:
types: [opened, reopened]
branches: [ "main" ]
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build docker image
working-directory: .
run: make docker-build
- name: Push docker image to ghcr.io
working-directory: .
run: make docker-push