summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2022-12-14 10:36:05 -0500
committerAustin S. Hemmelgarn <austin@netdata.cloud>2022-12-14 10:36:05 -0500
commit5e9617c784d695cd4eec39773da875cd3e7f1ce2 (patch)
treeba6181818b8bb75b8982d62f117edadd129f3acb /.github/workflows
parent90166dc517268d56ec7858e012d160ebae53c58e (diff)
Correctly fix repoconfig package uploads.
For real this time...
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/repoconfig-packages.yml24
1 files changed, 9 insertions, 15 deletions
diff --git a/.github/workflows/repoconfig-packages.yml b/.github/workflows/repoconfig-packages.yml
index 7cb4e00988..f8a3dc4066 100644
--- a/.github/workflows/repoconfig-packages.yml
+++ b/.github/workflows/repoconfig-packages.yml
@@ -108,21 +108,15 @@ jobs:
continue-on-error: true
if: github.event_name != 'pull_request' && github.repository == 'netdata/netdata'
run: |
- .github/scripts/package-upload.sh \
- ${{ matrix.pkgclouddistro }} \
- ${{ matrix.platform }} \
- ${{ matrix.format }} \
- netdata/netdata
- .github/scripts/package-upload.sh \
- ${{ matrix.pkgclouddistro }} \
- ${{ matrix.platform }} \
- ${{ matrix.format }} \
- netdata/netdata-edge
- .github/scripts/package-upload.sh \
- ${{ matrix.pkgclouddistro }} \
- ${{ matrix.platform }} \
- ${{ matrix.format }} \
- netdata/netdata-repoconfig
+ for arch in ${{ matrix.arches }}; do
+ for suffix in '' -edge -repoconfig ; do
+ .github/scripts/package-upload.sh \
+ ${{ matrix.pkgclouddistro }} \
+ ${arch} \
+ ${{ matrix.format }} \
+ netdata/netdata${suffix}
+ done
+ done
- name: Upload Packages
id: publish
if: github.event_name != 'pull_request' && github.repository == 'netdata/netdata'