Ask HN: Rails users, what is your release process?

by tistoonon 8/4/2020, 2:07 PMwith 1 comments

How do you release a new version of your product? Do you just git pull? Do you zip? Do you rsync?

Thanks!

by seracuzaon 8/4/2020, 2:51 PM

Forget about zip and rsync, it's a 1990-x era.

Theare 3 options in 2020:

Manually from laptop:

1) Heroku (git push)

2) Capistrano (use ssh to copy files)

3) Docker images (git push)

Automatically:

1) Trigger by CI/CD (git pull)