Skip to content

Move jordarlu to emertius section #7

Move jordarlu to emertius section

Move jordarlu to emertius section #7

Workflow file for this run

name: Call a reusable workflow and use its outputs
on:
workflow_dispatch:
jobs:
job1:
strategy:
matrix:
word: ['Sayali', 'Gaikawad']
uses: gaiksaya/opensearch-build/.github/workflows/resuable.yml@main
with:
word: ${{ matrix.word }}
identifier: ${{ matrix.word }}
job2:
runs-on: ubuntu-latest
needs: job1
steps:
- name: Print Output for Sayali
run: echo "Output for Sayali: ${{ needs.job1.outputs.firstword_Sayali }}"

Check failure on line 21 in .github/workflows/callable.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/callable.yml

Invalid workflow file

You have an error in your yaml syntax on line 21
- name: Print Output for Gaikawad
run: echo "Output for Gaikawad: ${{ needs.job1.outputs.firstword_Gaikawad }}"