Add action.yml

This commit is contained in:
2021-09-19 00:26:43 +02:00
committed by GitHub
parent ece91ea6f8
commit 06ea42ea32

20
action.yml Normal file
View File

@@ -0,0 +1,20 @@
name: Checkout and install esp-idf
description: Checks out or updates esp-idf and installs dependencies
inputs:
idfpath:
description: Path to esp-idf (should be a submodule of the firmware repository)
required: false
default: esp-idf
outputs: {}
runs:
using: composite
steps:
- name: Fast Submodule Checkout esp-idf
uses: 0xFEEDC0DE64/fast_submodule_checkout@main
with:
submodule: ${{ inputs.idfpath }}
- name: Install esp-idf
uses: 0xFEEDC0DE64/install_esp_idf@main
with:
idfpath: ${{ inputs.idfpath }}