Skip to content

.github/workflows/callable.yml #2

.github/workflows/callable.yml

.github/workflows/callable.yml #2

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/reusable.yml@main

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

View workflow run for this annotation

GitHub Actions / .github/workflows/callable.yml

Invalid workflow file

error parsing called workflow ".github/workflows/callable.yml" -> "gaiksaya/opensearch-build/.github/workflows/reusable.yml@main" : failed to fetch workflow: workflow was not found.
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 }}"