From 695eea298592ed70565d73ef95984ed737e92081 Mon Sep 17 00:00:00 2001 From: yage Date: Tue, 20 Feb 2024 23:57:43 -0700 Subject: [PATCH] v4.0.1 ===================================================================== - circleci: trigger test workflows on tags too --- .circleci/config.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 10dc876..4254856 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -110,7 +110,12 @@ jobs: workflows: python: jobs: - - python-test + - python-test: + filters: + tags: + only: /^v.*$/ + branches: + only: /^.*$/ - python-publish: requires: [python-test] context: [pypi-yage] @@ -122,7 +127,12 @@ workflows: nodejs: jobs: - - nodejs-test + - nodejs-test: + filters: + tags: + only: /^v.*$/ + branches: + only: /^.*$/ - nodejs-publish: requires: [nodejs-test] context: [npm-wrynegade]