Skip to content

Commit 86b3e6b

Browse files
committed
fix: circleci publish-tag workflow
includes the build and test jobs for publish-tag workflow According to circleci docs https://circleci.com/docs/2.0/configuration-reference/#tags: > Additionally, if a job requires any other jobs (directly or indirectly), you must specify tag filters for those jobs
1 parent 055e9ee commit 86b3e6b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.circleci/config.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,14 @@ workflows:
7676
version: 2
7777
flow:
7878
jobs:
79-
- test
80-
- build
79+
- test:
80+
filters:
81+
tags:
82+
only: /v[0-9]+(\.[0-9]+)*(-.*)*
83+
- build:
84+
filters:
85+
tags:
86+
only: /v[0-9]+(\.[0-9]+)*(-.*)*
8187
- publish-branch:
8288
requires:
8389
- build

0 commit comments

Comments
 (0)