Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
masonmei committed Sep 11, 2023
2 parents f2d5770 + 492639a commit 555ad60
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build and Push Operator

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and Push Docker Image
run: |
IMG=udmire/observability-operator:latest make docker-buildx

0 comments on commit 555ad60

Please sign in to comment.