From b503c8decb2c2c8c48583b0de6ba4b8481ecc13c Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Sun, 27 Jun 2021 09:02:19 +0100 Subject: [PATCH] Add missing spec file --- .github/release-files-spec.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/release-files-spec.json diff --git a/.github/release-files-spec.json b/.github/release-files-spec.json new file mode 100644 index 00000000..4ceba9f6 --- /dev/null +++ b/.github/release-files-spec.json @@ -0,0 +1,28 @@ +{ + "files": [ + { + "aql": { + "items.find": { + "$and": [ + { + "@build.name": "${buildname}", + "@build.number": "${buildnumber}", + "path": {"$match": "org*"} + }, + { + "$or": [ + { + "name": {"$match": "*.pom"} + }, + { + "name": {"$match": "*.jar"} + } + ] + } + ] + } + }, + "target": "nexus/" + } + ] +}