Skip to content

Commit

Permalink
Update circleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
Noarkhh committed Jul 8, 2024
1 parent 31c200d commit 10ca7c9
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,27 @@ orbs:
elixir: membraneframework/elixir@1

workflows:
version: 2
build:
jobs:
- elixir/build_test
- elixir/test
- elixir/lint
- elixir/build_test:
filters: &filters
tags:
only: /v.*/
- elixir/test:
filters:
<<: *filters
- elixir/lint:
filters:
<<: *filters
- elixir/hex_publish:
requires:
- elixir/build_test
- elixir/test
- elixir/lint
context:
- Deployment
filters:
branches:
ignore: /.*/
tags:
only: /v.*/

0 comments on commit 10ca7c9

Please sign in to comment.