Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Mazzotti <[email protected]>
  • Loading branch information
anmazzotti committed Aug 22, 2024
1 parent 4b81a02 commit a75af70
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/actions/chart/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ runs:
- name: Pull chart from OBS
env:
B_REPO: ${{ steps.set_repo.outputs.build_repo }}
OPERATOR_CHART: rancher/elemental-operator-chart
CRDS_CHART: rancher/elemental-operator-crds-chart
OPERATOR_CHART: rancher/elemental-operator
CRDS_CHART: rancher/elemental-operator-crds
shell: bash
run: |
mkdir -p build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:
- name: Pull chart for PR
env:
PR_NUMBER: ${{ github.event.number }}
OPERATOR_CHART: rancher/elemental-operator-chart
CRDS_CHART: rancher/elemental-operator-crds-chart
OPERATOR_CHART: rancher/elemental-operator
CRDS_CHART: rancher/elemental-operator-crds
run: |
set -x
B_REPO=registry.opensuse.org/isv/rancher/elemental/pr/rancher/elemental-operator/pr-${PR_NUMBER}/charts
Expand All @@ -77,7 +77,7 @@ jobs:
id: chart
run: |
set -x
FILE=$(find . -type f -name "elemental-operator-chart-[1-9]*.tgz" -print)
FILE=$(find . -type f -name "elemental-operator-[1-9]*.tgz" -print)
CHART=$(basename $FILE)
echo "chart_name=$CHART" >> $GITHUB_OUTPUT
- name: Upload chart
Expand Down
4 changes: 2 additions & 2 deletions .obs/helper_scripts/listimages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ if [ ${REGISTRY} != "registry.suse.com" ]; then
REGISTRY="$(dirname ${REGISTRY})/charts"
fi

echo "${REGISTRY}/rancher/elemental-operator-crds-chart:${OPERATOR}"
echo "${REGISTRY}/rancher/elemental-operator-chart:${OPERATOR}"
echo "${REGISTRY}/rancher/elemental-operator-crds:${OPERATOR}"
echo "${REGISTRY}/rancher/elemental-operator:${OPERATOR}"

0 comments on commit a75af70

Please sign in to comment.