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

@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: read
contents: read
steps:
- uses: actions/checkout@v4

View file

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