From aa2fe8ccbfcb117efa207d10229eeeac5d0f97c7 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 Feb 2023 17:11:30 +0100 Subject: Adding upstream version 1.38.0. Signed-off-by: Daniel Baumann --- .travis/trigger_package_build.sh | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 .travis/trigger_package_build.sh (limited to '.travis/trigger_package_build.sh') diff --git a/.travis/trigger_package_build.sh b/.travis/trigger_package_build.sh deleted file mode 100755 index d1ecd48ca..000000000 --- a/.travis/trigger_package_build.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -token="${1}" -version="${2}" -pkgtype="${3}" - -resp="$(curl -X POST \ - -H 'Accept: application/vnd.github.v3+json' \ - -H "Authorization: Bearer ${token}" \ - "https://api.github.com/repos/netdata/netdata/actions/workflows/packaging.yml/dispatches" \ - -d "{\"ref\": \"master\", \"inputs\": {\"version\": \"${version}\", \"type\": \"${pkgtype}\"}}")" - -if [ -z "${resp}" ]; then - echo "Successfully triggered binary package builds." - exit 0 -else - echo "Failed to trigger binary package builds. Output:" - echo "${resp}" - exit 1 -fi -- cgit v1.2.3