Skip to content

Commit

Permalink
Create job4.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
RahulGP14 authored Dec 20, 2023
1 parent 2aadc26 commit 17a521a
Showing 1 changed file with 103 additions and 0 deletions.
103 changes: 103 additions & 0 deletions .github/workflows/job4.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
name: Share data between jobs

on:
push:
branches:
- main
paths:
- 'README.md'

jobs:
job_1:
name: Add 3 and 7
runs-on: actions_runner_dev
steps:
- shell: bash
run: |
expr 3 + 7 > math-homework.txt
- name: Upload math result for job 1
uses: actions/upload-artifact@v3
with:
name: homework
path: math-homework.txt

job_2:
name: Multiply by 9
needs: job_1
runs-on: actions_runner_dev
steps:
- name: Download math result for job 1
uses: actions/download-artifact@v3
with:
name: homework
- shell: bash
run: |
value=`cat math-homework.txt`
expr $value \* 9 > math-homework.txt
- name: Upload math result for job 2
uses: actions/upload-artifact@v3
with:
name: homework
path: math-homework.txt

job_3:
name: Display results
needs: job_2
runs-on: actions_runner_dev
steps:
- name: Download math result for job 2
uses: actions/download-artifact@v3
with:
name: homework
- name: Print the final result
shell: bash
run: |
value=`cat math-homework.txt`
echo The result is $value
job_4:
name: Add 3 and 7
runs-on: actions_runner_dev
steps:
- shell: bash
run: |
expr 3 + 7 > math-homework.txt
- name: Upload math result for job 1
uses: actions/upload-artifact@v3
with:
name: homework
path: math-homework.txt

job_5:
name: Multiply by 9
needs: job_4
runs-on: actions_runner_dev
steps:
- name: Download math result for job 1
uses: actions/download-artifact@v3
with:
name: homework
- shell: bash
run: |
value=`cat math-homework.txt`
expr $value \* 9 > math-homework.txt
- name: Upload math result for job 2
uses: actions/upload-artifact@v3
with:
name: homework
path: math-homework.txt

job_6:
name: Display results
needs: job_5
runs-on: actions_runner_dev
steps:
- name: Download math result for job 2
uses: actions/download-artifact@v3
with:
name: homework
- name: Print the final result
shell: bash
run: |
value=`cat math-homework.txt`
echo The result is $value

0 comments on commit 17a521a

Please sign in to comment.