From 3f6f51f4ea2deebd03892d5a565344341f44d3c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zawadzki?= Date: Tue, 27 Aug 2024 14:03:36 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20release=20workflow=20relea?= =?UTF-8?q?se=20tag=20(#1016)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🐛 Fix release tag missing the `v` prefix * 🔖 Bump version --- .github/workflows/detect-and-tag-new-version.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/detect-and-tag-new-version.yml b/.github/workflows/detect-and-tag-new-version.yml index ab1a54bb9..5f713bcab 100644 --- a/.github/workflows/detect-and-tag-new-version.yml +++ b/.github/workflows/detect-and-tag-new-version.yml @@ -50,4 +50,4 @@ jobs: if: steps.check-tag.outputs.exists != 'true' env: GH_TOKEN: ${{ secrets.LUDOVICO_BOT_TOKEN }} - run: gh workflow run cd.yml -f version=${{ steps.get-version.outputs.version }} --ref 2.0 + run: gh workflow run cd.yml -f version=v${{ steps.get-version.outputs.version }} --ref 2.0 diff --git a/pyproject.toml b/pyproject.toml index eff80be72..972e85459 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "viadot2" -version = "2.1.13" +version = "2.1.14" description = "A simple data ingestion library to guide data flows from some places to other places." authors = [ { name = "acivitillo", email = "acivitillo@dyvenia.com" },