From 6594b20b4d49bc4db1c3bd79e9a6219da89b573f Mon Sep 17 00:00:00 2001 From: aesoft <43991222+aeppling@users.noreply.github.com> Date: Tue, 17 Sep 2024 13:58:08 +0200 Subject: [PATCH] fix: no condition commit workflow --- .github/workflows/fullrelease.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fullrelease.yaml b/.github/workflows/fullrelease.yaml index ebb234c..9d5deb5 100644 --- a/.github/workflows/fullrelease.yaml +++ b/.github/workflows/fullrelease.yaml @@ -25,13 +25,13 @@ jobs: run: npx semantic-release env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Commit and push changes - if: ${{ needs.semantic-release.outputs.ver }} run: | git config user.name "$GITHUB_ACTOR" git config user.email "$GITHUB_ACTOR@users.noreply.github.com" git add charts/kexa-chart/Chart.yaml - git commit -m "chore(release): update Chart.yaml version to ${{ steps.ver.outputs.nextVersion }}" + git commit -m "chore(release): update Chart.yaml version" git push origin main env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}