Skip to content

.github/workflows/callable.yml #3

.github/workflows/callable.yml

.github/workflows/callable.yml #3

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 }}
job2:
runs-on: ubuntu-latest
needs: job1
steps:
- name: Print Output
run: |
echo "Word: ${{ needs.job1.outputs.word }}, First Word: ${{ needs.job1.outputs.firstword }}"