Laravel deployment with GitHub Actions
Video Statistics and Information
Channel: Philo Hermans
Views: 4,372
Rating: undefined out of 5
Keywords: laravel, github, github actions, atomic deployment, php, deployment, devops, zero downtime deployment, tutorial, how to, programming
Id: 2zduPKmszmI
Channel Id: undefined
Length: 49min 45sec (2985 seconds)
Published: Mon Jan 25 2021
Please note that this website is currently a work in progress! Lots of interesting data and statistics to come.
I don't think advocating putting account usernames & passwords into a
deployment-config.json
is a smart recommendation, even if the repo is private.It's recommended to use
npm ci
in an automated pipeline instead ofnpm install
https://docs.npmjs.com/cli/v6/commands/npm-ciYou can also find a written version of my video here. I'm looking forward to hearing what you guys think!
nice stuff - I watched the first half of the video, but didn't understand why you do two jobs in the action when they have to run serially. Did you cover this anywhere? What's the point of the second job? Why not just more steps in the first job?