From 59d4eede7f436b78a206740179406b17432f2a60 Mon Sep 17 00:00:00 2001 From: Sagar Paul Date: Thu, 11 May 2023 22:18:55 +0530 Subject: [PATCH] Update version in galaxy.yml (#264) * add sed * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .github/workflows/push.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 99732df..bd4ab20 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -84,9 +84,9 @@ jobs: run: pre-commit run prettier --all-files continue-on-error: true - - name: Update the glaxay.yml version if needed - run: pre-commit run autoversion --all-files - continue-on-error: true + - name: Update the glaxay.yml version + run: | + sed -ie 's/version:.*/version: ${{ env.VERSION }}/' galaxy.yml - name: Determine if a PR is necessary run: git diff --no-ext-diff --quiet --exit-code