From d758bedaed8e70f97e3b882c0f5665b9cce62430 Mon Sep 17 00:00:00 2001 From: XPayServer Date: Thu, 6 Aug 2020 08:42:11 +0200 Subject: [PATCH] Add Better Version Build Support This allow you to build specific builds based on feature for specific version such as `v1.0.0.88-lndseedbackup-1` (good for forks with custom features) --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bd0462823..7fa80eb03 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -124,7 +124,6 @@ workflows: filters: branches: only: master - publish: jobs: - amd64: @@ -134,21 +133,22 @@ workflows: ignore: /.*/ # only act on version tags v1.0.0.88 or v1.0.2-1 # OR feature tags like vlndseedbackup + # OR features on specific versions like v1.0.0.88-lndseedbackup-1 tags: - - only: /(v[1-9]+(\.[0-9]+)*(-[0-9]+)?)|(v[a-z]+)/ + + only: /(v[1-9]+(\.[0-9]+)*(-[a-z0-9-]+)?)|(v[a-z0-9-]+)/ - arm32v7: filters: branches: ignore: /.*/ tags: - only: /(v[1-9]+(\.[0-9]+)*(-[0-9]+)?)|(v[a-z]+)/ + only: /(v[1-9]+(\.[0-9]+)*(-[a-z0-9-]+)?)|(v[a-z0-9-]+)/ - arm64v8: filters: branches: ignore: /.*/ tags: - only: /(v[1-9]+(\.[0-9]+)*(-[0-9]+)?)|(v[a-z]+)/ + only: /(v[1-9]+(\.[0-9]+)*(-[a-z0-9-]+)?)|(v[a-z0-9-]+)/ - multiarch: requires: - amd64 @@ -158,4 +158,4 @@ workflows: branches: ignore: /.*/ tags: - only: /(v[1-9]+(\.[0-9]+)*(-[0-9]+)?)|(v[a-z]+)/ + only: /(v[1-9]+(\.[0-9]+)*(-[a-z0-9-]+)?)|(v[a-z0-9-]+)/