Github Actions Multi Job | DevOps #3

Published: 02 February 2023
on channel: Next Mastery
32
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 - Firs...  


git depth video
   • Git & Github Tutorial | Crash Course ...  
github video
   • Git & Github Tutorial | Crash Course ...  
.gitgnore depth
   • Github Tutorial .gitignore | Crash Co...  
github collaborate
   • Github Tutorial Collaborate & Issues ...  
github fork
   • Github Tutorial Fork | Crash Course #...  

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


Watch video Github Actions Multi Job | DevOps #3 online without registration, duration hours minute second in high quality. This video was added by user Next Mastery 02 February 2023, don't forget to share it with your friends and acquaintances, it has been viewed on our site 32 once and liked it 2 people.