From 52a89dae22508fe47d25130ab2328c461ded0ad2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl>
Date: Mon, 11 Mar 2024 08:43:15 +0100
Subject: [PATCH] fix echo

---
 .github/workflows/ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 84e29e74..bc8556cd 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -55,8 +55,8 @@ jobs:
       - name: Alter Version
         if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
         run: |
-          echo -e '__version__ = "' > satella/__init__.py
-          echo -e '${{ github.event.release.tag_name }}' >> satella/__init__.py
+          echo -n '__version__ = "' > satella/__init__.py
+          echo -n '${{ github.event.release.tag_name }}' >> satella/__init__.py
           echo '"' >> satella/__init__.py
       - name: Build
         run: python -m build .
-- 
GitLab