Build test 2

This commit is contained in:
Mdumisi Kelvin Letsie 2024-03-06 13:46:16 +02:00
parent cd208bbaa5
commit cc8ff95b70
2 changed files with 5 additions and 4 deletions

View file

@ -21,14 +21,15 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4 - uses: actions/checkout@v4
name: Checkout repository name: Checkout repository
# This job calls the build pipeline from local workflows directory
- uses: ./.github/workflows/build.yml
name: 'Call build workflow'
# This job calls the build pipeline from local workflows directory
if: ${{ success() }} if: ${{ success() }}
- run: echo "Job succeeded" - run: echo "Job succeeded"
shell: bash shell: bash
- uses: ./.github/workflows/build.yml
name: 'Call build workflow'
# If failed
if: ${{ !success() }} if: ${{ !success() }}
- run: echo "Job failed" - run: echo "Job failed"
shell: bash shell: bash