-
Notifications
You must be signed in to change notification settings - Fork 109
48 lines (43 loc) · 1.49 KB
/
publish-community-operators.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: publish_community_operators
on: [push]
jobs:
k8s-operatorhub--community-operators:
# if: startsWith(github.ref, 'refs/tags/v')
# needs: [ create-release ]
uses: ./.github/workflows/publish-community-operators-base.yml
with:
community_repo: true
org: k8s-operatorhub
repo: community-operators
secrets:
GH_ROBOT_TOKEN: ${{secrets.GH_ROBOT_TOKEN}}
redhat-openshift-ecosystem--community-operators-prod:
# if: startsWith(github.ref, 'refs/tags/v')
# needs: [ create-release ]
uses: ./.github/workflows/publish-community-operators-base.yml
with:
community_repo: true
org: redhat-openshift-ecosystem
repo: community-operators-prod
secrets:
GH_ROBOT_TOKEN: ${{secrets.GH_ROBOT_TOKEN}}
redhat-openshift-ecosystem--redhat-marketplace-operators:
# if: startsWith(github.ref, 'refs/tags/v')
# needs: [ create-release ]
uses: ./.github/workflows/publish-community-operators-base.yml
with:
community_repo: false
org: redhat-openshift-ecosystem
repo: redhat-marketplace-operators
secrets:
GH_ROBOT_TOKEN: ${{secrets.GH_ROBOT_TOKEN}}
redhat-openshift-ecosystem--certified-operators:
# if: startsWith(github.ref, 'refs/tags/v')
# needs: [ create-release ]
uses: ./.github/workflows/publish-community-operators-base.yml
with:
community_repo: false
org: redhat-openshift-ecosystem
repo: certified-operators
secrets:
GH_ROBOT_TOKEN: ${{secrets.GH_ROBOT_TOKEN}}