From a5e467d6f34f5de7add7c2dccabafbc95754d20f Mon Sep 17 00:00:00 2001 From: jandroav Date: Tue, 5 Mar 2024 12:15:03 +0100 Subject: [PATCH] chore(generate.yml): remove unnecessary git add commands and add all changes for commit feat(generate.yml): remove liquibase zip file after moving liquibase folder to bin for cleanup and optimization --- .github/workflows/generate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index 3464959..b52bbca 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -62,6 +62,7 @@ jobs: unzip liquibase-${{ inputs.liquibase-version }}.zip -d liquibase rm -rf ./bin/liquibase mv liquibase ./bin + rm -rf liquibase-${{ inputs.liquibase-version }}.zip - name: Configure git user run: | @@ -73,8 +74,7 @@ jobs: continue-on-error: true run: | git pull - git add proto-commands - git add bin + git add . git commit -m "Generated protobuf files for liquibase version ${{ inputs.liquibase-version }}" git push env: