Skip to content

Commit

Permalink
Merge pull request #47 from joshhsoj1902/better-workflows
Browse files Browse the repository at this point in the history
Properly name jobs
  • Loading branch information
joshhsoj1902 authored Dec 17, 2023
2 parents 04eb236 + 8682d97 commit fd43efc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,22 +90,27 @@ workflows:
build:
jobs:
- build-docker:
name: build << matrix.dir >>
matrix:
parameters:
dir: *images
- publish-docker-latest:
name: publish latest << matrix.dir >>
matrix:
parameters:
dir: *images
requires:
- build-docker
- build << matrix.dir >>
filters:
branches:
only: main
- publish-docker-tag:
name: publish tag << matrix.dir >>
matrix:
parameters:
dir: *images
requires:
- publish latest << matrix.dir >>
filters:
tags:
only: /^v.*/
Expand Down

0 comments on commit fd43efc

Please sign in to comment.