From 1741a27a87ae07ff42ee4948df06835791500777 Mon Sep 17 00:00:00 2001 From: Alex Lisitsyn Date: Wed, 1 Mar 2023 22:30:21 +0800 Subject: [PATCH] skip build artifacts during component deploying --- idf_component.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/idf_component.yml b/idf_component.yml index 082a8bc..bf3e8e5 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,11 +1,11 @@ -version: "1.0.9" +version: "1.0.10" description: ESP-MODBUS is the official Modbus library for Espressif SoCs. url: https://github.com/espressif/esp-modbus dependencies: idf: ">=4.1" files: exclude: - - "docs/_build/**/*" - - "docs/_build" - - "test/**/build/**/*" - - "test/**/build" + - "docs/**/*" + - "docs" + - "test/**/*" + - "test"