Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ranyodh committed Oct 26, 2023
1 parent 639ba7b commit f7ec1b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ name: Build Boundless Operator Docker Image

on:
push:
branches: [ "main", "workflow" ]
branches: [ "main" ]
pull_request:
types: [opened, reopened]
branches: [ "main" ]

jobs:
build:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
uses: docker/login-action@v3.0.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
# mirantis.com/boundless-operator-bundle:$VERSION and mirantis.com/boundless-operator-catalog:$VERSION.
IMAGE_REPO ?= ghcr.io/mirantis
IMAGE_TAG_BASE ?= {IMAGE_REPO}/boundless-operator
IMAGE_TAG_BASE ?= $(IMAGE_REPO)/boundless-operator

# BUNDLE_IMG defines the image:tag used for the bundle.
# You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=<some-registry>/<project-name-bundle>:<tag>)
Expand Down

0 comments on commit f7ec1b3

Please sign in to comment.