From 06ea42ea323f2f4528725146e91ad49da00dabf7 Mon Sep 17 00:00:00 2001 From: Daniel Brunner Date: Sun, 19 Sep 2021 00:26:43 +0200 Subject: [PATCH] Add action.yml --- action.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..b111867 --- /dev/null +++ b/action.yml @@ -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 }}