Skip to content

Commit

Permalink
build: Add release job to circleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-marcu committed Aug 1, 2024
1 parent d69ad9c commit fddb44d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,18 @@ jobs:
- run:
command: mvn --batch-mode release:perform
workflows:
build-and-package:
commit:
jobs:
- maven-build
- maven-build:
filters:
branches:
ignore: /^release$/
release:
jobs:
- maven-release:
requires:
- maven-build
filters:
branches:
only: /^main$/
only: /^release$/
tags:
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/

0 comments on commit fddb44d

Please sign in to comment.