Apparently checkout before using a local workflow

This commit is contained in:
Ben Meadors 2022-11-19 16:25:00 -06:00
parent eb34a95ab7
commit d2d2f278cf
2 changed files with 7 additions and 7 deletions

View File

@ -11,13 +11,6 @@ jobs:
build-esp32:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: "recursive"
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Setup Python
uses: actions/setup-python@v4
with:

View File

@ -97,6 +97,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: "recursive"
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- uses: ./.github/workflows/build_esp32.yml
with:
board: ${{ matrix.board }}