From 6707ceb63c9f971a77778423863b07d074daa4cc Mon Sep 17 00:00:00 2001 From: Sergei Silnov Date: Wed, 4 May 2022 17:50:51 +0200 Subject: [PATCH] Upload component to the registry on any tag (#6688) upload-idf-component.yml action was only running for tags like v*, while in this project tags like 2.0.3 are used. With this change, the workflow will run for all tags. --- .github/workflows/upload-idf-component.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/upload-idf-component.yml b/.github/workflows/upload-idf-component.yml index d9e4032d..eff1a5d3 100644 --- a/.github/workflows/upload-idf-component.yml +++ b/.github/workflows/upload-idf-component.yml @@ -2,7 +2,7 @@ name: Push components to https://components.espressif.com on: push: tags: - - v* + - * jobs: upload_components: runs-on: ubuntu-latest