From 7f2b4d3e581903df65727a97a2d5b67d296a3268 Mon Sep 17 00:00:00 2001 From: lpm0073 Date: Mon, 27 Nov 2023 22:02:55 -0600 Subject: [PATCH] fix: create the file, append to the file --- .github/workflows/semanticVersionBumpMerge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/semanticVersionBumpMerge.yml b/.github/workflows/semanticVersionBumpMerge.yml index 5baabfd..0ee4dc1 100644 --- a/.github/workflows/semanticVersionBumpMerge.yml +++ b/.github/workflows/semanticVersionBumpMerge.yml @@ -78,7 +78,7 @@ jobs: id: update_version run: | echo "# -*- coding: utf-8 -*-" > __version__.py - echo "__version__ = '${{ env.NEXT_VERSION }}'" > __version__.py + echo "__version__ = '${{ env.NEXT_VERSION }}'" >> __version__.py git config --local user.email "action@github.com" git config --local user.name "GitHub Action" git add __version__.py