reusable workflows should be referenced at the top-level `jobs.*.uses' key, not within steps
name: HelloWorld
on:
workflow_dispatch:
jobs:
checkout:
runs-on: windows-latest
steps:
- name: Checkout using the Template File
uses: actions/checkout@v2
- name: Compile Java
uses: org/repo/.github/workflows/build.yml@main
with:
jdk_version: 11
Error: .github#L1 reusable workflows should be referenced at the top-level `jobs.*.uses' key, not within steps
uses
andsteps
at the same time for the following jobs: e2e-android-native – Submersed