summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2024-04-01 06:56:17 -0400
committerGitHub <noreply@github.com>2024-04-01 06:56:17 -0400
commitc4edfbea31ca138f8de71a3215906f4e180f2057 (patch)
treec7f909f8c1f292cb34b02f04161c0a9369139d27
parentaad196cddb0cddac4dd7105c25e1a174a3a2de68 (diff)
Fix repoconfig publishing. (#17288)
They’re only supposed to go into the repoconfig repositories, not the edge or stable ones.
-rw-r--r--.github/workflows/repoconfig-packages.yml12
1 files changed, 2 insertions, 10 deletions
diff --git a/.github/workflows/repoconfig-packages.yml b/.github/workflows/repoconfig-packages.yml
index 8975fa4d49..f2738de5d8 100644
--- a/.github/workflows/repoconfig-packages.yml
+++ b/.github/workflows/repoconfig-packages.yml
@@ -104,12 +104,6 @@ jobs:
run: |
printf "Packages to upload:\n%s" "$(ls artifacts/*.${{ matrix.format }})"
for pkgfile in artifacts/*.${{ matrix.format }} ; do
- .github/scripts/package_cloud_wrapper.sh yank "${REPO_PREFIX}/${{ matrix.pkgclouddistro }}" \
- "$(basename "${pkgfile}")" || true
- .github/scripts/package_cloud_wrapper.sh push "${REPO_PREFIX}/${{ matrix.pkgclouddistro }}" "${pkgfile}"
- .github/scripts/package_cloud_wrapper.sh yank "${REPO_PREFIX}-edge/${{ matrix.pkgclouddistro }}" \
- "$(basename "${pkgfile}")" || true
- .github/scripts/package_cloud_wrapper.sh push "${REPO_PREFIX}-edge/${{ matrix.pkgclouddistro }}" "${pkgfile}"
.github/scripts/package_cloud_wrapper.sh yank "${REPO_PREFIX}-repoconfig/${{ matrix.pkgclouddistro }}" \
"$(basename "${pkgfile}")" || true
.github/scripts/package_cloud_wrapper.sh push "${REPO_PREFIX}-repoconfig/${{ matrix.pkgclouddistro }}" "${pkgfile}"
@@ -127,14 +121,12 @@ jobs:
if: github.event_name != 'pull_request' && github.repository == 'netdata/netdata'
run: |
# shellcheck disable=SC2043
- for arch in "${{ matrix.arches }}"; do
- for suffix in '' -edge -repoconfig; do
+ for arch in ${{ matrix.arches }}; do
.github/scripts/package-upload.sh \
"${{ matrix.pkgclouddistro }}" \
"${arch}" \
"${{ matrix.format }}" \
- netdata/netdata"${suffix}"
- done
+ netdata/netdata-repoconfig
done
- name: Failure Notification
if: ${{ failure() && github.repository == 'netdata/netdata' }}