24
olback
4y

CI/CD is probably the best thing that I ever learned about in the software engineering field.

Whenever I merge into master, my code automatically builds and the artifacts are uploaded to a new release on github.

Beautiful.

Comments
  • 1
    Ohh, so that's what that's for, thanks ^^
  • 1
    Welcome, friend. Automation ftw!
  • 1
    I think I spent about 30 minutes every time I wanted to manually build and deploy our SPAs to our test env, which was a nightmare when troubleshooting cors or proxy stuff.

    After I figured out azure pipelines it builds and deploys whenever i push to dev. It works so well i want to slap my previous self for not doing it sooner.
  • 0
    Better to have it deploy to production only on tags, and to staging on master merge.
Add Comment