5 ms·
Ask HN: How does your CI/CD stack look like today?
What kind of tools are there and if you're happy/planning to replace any with an alternative?
- nness 3y agoNetlify, funnily enough, does nearly all my heavy-lifting for me. It's wild how much of the final stages of deployment are just handled so smoothly (even if the pricing is kinda ridiculous now.) Github Actions for test running — replacing Travis after they removed their free-tier for OSS.
- sirodoht 3y agoA mix of GitHub Actions and Gitlab CI and sourcehut builds. Maybe happiest with sourcehut but mostly happy with all three.
- marcosnils 3y agoGithub actions with https://dagger.io https://dagger.io is simply awesome!
- gerhardlazu 3y agoAnother https://dagger.io https://dagger.io fan here. Have been using it since late 2021 to continuously deploy a Phoenix app to Fly.io: https://github.com/thechangelog/changelog.com/pull/395 https://github.com/thechangelog/changelog.com/pull/395. Every commit goes into production. This is what the GHA workflow currently looks like: https://github.com/thechangelog/changelog.com/blob/c7b8a57b28ee4b747163dc7d56fb82162faedfac/.github/workflows/ship_it.yml https://github.com/thechangelog/changelog.com/blob/c7b8a57b2... FWIW, you can see how everything fits together in this architecture diagram: https://github.com/thechangelog/changelog.com/blob/master/INFRASTRUCTURE.md https://github.com/thechangelog/changelog.com/blob/master/IN...