Move the checkout

pull/1960/head
Ben Meadors 2022-11-19 18:40:17 -06:00
rodzic 57e2e75d24
commit 8be65bb0ab
2 zmienionych plików z 7 dodań i 6 usunięć

Wyświetl plik

@ -11,6 +11,13 @@ 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: Build base
id: base
uses: ./.github/workflows/composite/build-base

Wyświetl plik

@ -9,12 +9,6 @@ outputs:
runs:
using: "composite"
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