From 84a745320de9d2625559f34f4826050c991040c5 Mon Sep 17 00:00:00 2001 From: Marouane <57333995+riimuru@users.noreply.github.com> Date: Thu, 12 Sep 2024 23:06:50 -0400 Subject: [PATCH] [skip ci] ci(ts-build): remove unnecessary step --- .github/workflows/push-build.yml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.github/workflows/push-build.yml b/.github/workflows/push-build.yml index af824b800..e96f6eb31 100644 --- a/.github/workflows/push-build.yml +++ b/.github/workflows/push-build.yml @@ -21,26 +21,13 @@ jobs: - name: Setup Git run: | git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" - git config --global user.name "Rapid Stream Bot" + git config --global user.name "Distribution builder" git config --global credential.helper store echo "https://${{ secrets.USERNAME }}:${{ secrets.TOKEN }}@github.com" > ~/.git-credentials shell: bash - - name: Check Diff - id: check_diff - run: | - git diff --quiet || status=$? - if [ $status -eq 0 ]; - then - echo "push_changes=false" >> $GITHUB_OUTPUT - else - echo "push_changes=true" >> $GITHUB_OUTPUT - fi - shell: bash - - name: Push Changes - if: steps.check_diff.outputs.push_changes == 'true' run: | git add . - git commit -am "Compile TS" + git commit -am "chore(dist)" git push