Skip to content

.github/workflows/callable.yml #1

.github/workflows/callable.yml

.github/workflows/callable.yml #1

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:
- run: echo ${{ needs.job1.outputs.firstword }}