How To Setup A Bitbucket CI/CD Pipeline

Поделиться
HTML-код
  • Опубликовано: 27 окт 2024

Комментарии • 11

  • @DhavalAhir10
    @DhavalAhir10 6 месяцев назад +1

    When we define
    'pull-requests':
    develop:
    - - - extra code
    Here in this case pull request run based on source branch and not a destination.
    From the above code, when you create PR from develop to master ( which is very common in industries) at that time your pipeline will run.
    But when someone raised PR from feat/notification_update to develop.
    At that time Pipeline will not work.
    Pipelines 'pull-request' is based on source branch & not a destination based.

  • @ryrilya2289
    @ryrilya2289 4 месяца назад +1

    Thanks! Very helpful guide for a beginner in these topics

  • @juanmacias5922
    @juanmacias5922 9 месяцев назад

    Thanks, this was super helpful, I've been wondering how CI/CD pipelines worked.

  • @dialvec
    @dialvec 2 месяца назад

    So clear.... amazing!!!!!!

  • @kksaurab
    @kksaurab Месяц назад

    This is only for CI. What about CD?

    • @self-taughtdev
      @self-taughtdev  Месяц назад

      CD depends on where you're deploying to. For example if you're throwing it on firebase, you'd just add your commands to deploy to firebase in one of the steps in the yaml file and include it in the appropriate step.

  • @stockspartan4731
    @stockspartan4731 9 месяцев назад

    Nice!