Apparently checkout before using a local workflow

pull/1960/head
Ben Meadors 2022-11-19 16:25:00 -06:00
rodzic eb34a95ab7
commit d2d2f278cf
2 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -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:

Wyświetl plik

@ -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 }}