Skip to content

Commit

Permalink
test(ci): replace rpm-standard with test-rpm-standard for delivery an…
Browse files Browse the repository at this point in the history
…d promote
  • Loading branch information
tuntoja committed Apr 8, 2024
1 parent 21aa775 commit 342d64f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/actions/promote-to-stable/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ runs:
# Cloud specific promote
# delivery by default to onprem, override to internal if base branch is master
if [[ ${{ inputs.github_base_ref }} == "master" ]]; then
ROOT_REPO_PATH="rpm-standard-internal"
ROOT_REPO_PATH="test-rpm-standard-internal"
else
ROOT_REPO_PATH="rpm-standard"
ROOT_REPO_PATH="test-rpm-standard"
fi
# Search for testing packages candidate for promote
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/rpm-delivery/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ runs:
# if cloud, deliver to testing-<release_type>
# if non-cloud, delivery to testing as usual
if [[ ${{ inputs.release_cloud }} -eq 1 && ${{ inputs.release_type }} == "hotfix" ]] || [[ ${{ inputs.release_cloud }} -eq 1 && ${{ inputs.release_type }} == "release" ]];then
ROOT_REPO_PATHS="rpm-standard-internal"
ROOT_REPO_PATHS="test-rpm-standard-internal"
UPLOAD_REPO_PATH="${{ inputs.version }}/${{ inputs.distrib }}/${{ inputs.stability }}-${{ inputs.release_type }}/$ARCH/RPMS/${{ inputs.module_name }}/"
elif [[ ${{ inputs.release_cloud }} -eq 0 ]];then
ROOT_REPO_PATHS="rpm-standard"
ROOT_REPO_PATHS="test-rpm-standard"
UPLOAD_REPO_PATH="${{ inputs.version }}/${{ inputs.distrib }}/${{ inputs.stability }}/$ARCH/${{ inputs.module_name }}/"
else
echo "Invalid combination of release_type and release_cloud"
Expand Down

0 comments on commit 342d64f

Please sign in to comment.