Github Actions Multi Job | DevOps #3

Опубликовано: 01 Март 2026
на канале: Next Mastery
39
2

#githubActionsTutorial #autodeploy
lang: urdu | hindi
After the several important topics are covered , we will create the full stack web and deploy into server with using github actions.

playlist
   • Github Actions Series Overview - First Act...  


git depth video
   • Git & Github Tutorial | Crash Course #1 | ...  
github video
   • Git & Github Tutorial | Crash Course #2 | ...  
.gitgnore depth
   • Github Tutorial .gitignore | Crash Course ...  
github collaborate
   • Github Tutorial Collaborate & Issues | Cra...  
github fork
   • Github Tutorial Fork | Crash Course #5 | U...  

source code
name: multi-job
on: push
jobs:
first-job:
runs-on: ubuntu-latest
steps:
name: first job
run: echo "first job"
name: install Dependencies # error because no dependencies install
run: npm run build

second-job:
needs: first-job
runs-on: ubuntu-latest
steps:
name: second job
run: echo "second job"




like and subscribe