Skip to content

Commit

Permalink
allow choose channel
Browse files Browse the repository at this point in the history
  • Loading branch information
freeznet committed Sep 21, 2023
1 parent b20cc12 commit 0566f7a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/bundle-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,22 @@ on:
tag:
description: 'Version Tag'
required: true
openshift:
description: 'Publish to openshift certificated'
required: true
default: true
type: boolean
operatorhub:
description: 'Publish to operatorhub.io'
required: true
default: true
type: boolean

jobs:
operatorhub:
name: publish to operatorhub.io
runs-on: ubuntu-latest
if: ${{ inputs.operatorhub }}
steps:
- name: clean disk
run: |
Expand Down Expand Up @@ -134,6 +145,7 @@ jobs:
openshift:
name: publish to openshift certificated
runs-on: ubuntu-latest
if: ${{ inputs.openshift }}
steps:
- name: clean disk
run: |
Expand Down

0 comments on commit 0566f7a

Please sign in to comment.