Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nhkhai authored Apr 24, 2024
1 parent 602d949 commit 6d831d4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
# Workflow - Defines what sequence will the jobs run.
# Orchestrate jobs using workflows.
# See: https://circleci.com/docs/workflows/ & https://circleci.com/docs/configuration-reference/#workflows
workflows:
ci_flow:
simple_workflow: # Workflow name. This is the name of the workflow, feel free to change it to better match your workflow.
# Inside the workflow, you define the jobs you want to run.
jobs:
Expand Down Expand Up @@ -169,3 +169,14 @@ workflows:
branches:
only:
- release

cicd_flow:
- deploy:
requires:
- publish
filters:
# tags:
# only: /^v[0-9]+\.[0-9]+\.[0-9]+$/ # Ensure this job runs only for semantically versioned tags. This regex pattern matches semantic versioning tags (e.g., v1.0.0, v2.1.3).
branches:
only:
- release

0 comments on commit 6d831d4

Please sign in to comment.