From 8d07f9ce5ac84f4c1281acbc678223b2150b5901 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Sat, 11 Sep 2021 22:22:56 +0200 Subject: [PATCH] Fix updater logics, again --- .github/workflows/updater.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml index 52e7a8b..236dc10 100644 --- a/.github/workflows/updater.yml +++ b/.github/workflows/updater.yml @@ -25,7 +25,10 @@ jobs: git config --global user.email 'yunohost-bot@users.noreply.github.com' # Run the updater script ./.github/workflows/updater.sh - # Commit + - name: Commit changes + id: commit + if: ${{ env.PROCEED == 'true' }} + run: | git commit -am "Upgrade to v$VERSION" - name: Create Pull Request id: cpr