From 67161c24f60c6fd7a547ffa93ba65acff664c97e Mon Sep 17 00:00:00 2001 From: clayjay3 Date: Tue, 13 Feb 2024 16:26:47 +0000 Subject: [PATCH] Attempt to fix git push issues. --- .github/workflows/deploy_docker.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_docker.yml b/.github/workflows/deploy_docker.yml index 00491895..474d432c 100644 --- a/.github/workflows/deploy_docker.yml +++ b/.github/workflows/deploy_docker.yml @@ -209,7 +209,8 @@ jobs: git add .gitattributes git add . git commit -m "Upgrade ${{ matrix.package }} Package for AMD64" - git lfs push --all origin + git lfs push --all origin master + git push origin master env: SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} @@ -352,7 +353,8 @@ jobs: git add .gitattributes git add . git commit -m "Upgrade ${{ matrix.package }} Package for AMD64" - git lfs push --all origin + git lfs push --all origin master + git push origin master env: SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}