forked from redhat-developer/app-services-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: using new operatorhub repository (redhat-developer#248)
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,6 @@ postgresql-operator | |
.project | ||
.settings | ||
.vscode | ||
community-operators | ||
community-operators-prod | ||
*.iml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
## Script for manual release to operator hub | ||
## After script finishes please manually | ||
|
||
# git clone [email protected]:operator-framework/community-operators.git | ||
git clone [email protected]:redhat-openshift-ecosystem/community-operators-prod.git | ||
VERSION=`cat version` | ||
mkdir ./community-operators/community-operators/rhoas-operator/${VERSION} | ||
cp -Rf ./olm-catalog/rhoas-operator/${VERSION}/manifests ./community-operators/community-operators/rhoas-operator/${VERSION} | ||
cp -Rf ./olm-catalog/rhoas-operator/${VERSION}/metadata ./community-operators/community-operators/rhoas-operator/${VERSION} | ||
mkdir ./community-operators-prod/operators/rhoas-operator/${VERSION} | ||
cp -Rf ./olm-catalog/rhoas-operator/${VERSION}/manifests ./community-operators-prod/operators/rhoas-operator/${VERSION} | ||
cp -Rf ./olm-catalog/rhoas-operator/${VERSION}/metadata ./community-operators-prod/operators/rhoas-operator/${VERSION} | ||
|
||
cd ./community-operators && \ | ||
cd ./community-operators-prod && \ | ||
git checkout -b rhoas-operator-${VERSION} && \ | ||
git add --all && \ | ||
git commit --signoff -m"chore: update rhoas operator ${VERSION}" | ||
git commit --signoff -m"chore: update rhoas operator ${VERSION}" |