Checkout master first

pull/1960/head
Ben Meadors 2022-11-19 18:42:27 -06:00
rodzic 8be65bb0ab
commit 23ea22c741
2 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

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

Wyświetl plik

@ -9,6 +9,12 @@ 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