소스 검색

workflow update

Taislin 7 달 전
부모
커밋
75a714b62d
1개의 변경된 파일4개의 추가작업 그리고 12개의 파일을 삭제
  1. 4 12
      .github/workflows/upload-client.yml

+ 4 - 12
.github/workflows/upload-client.yml

@@ -58,12 +58,8 @@ jobs:
           git config user.name "GitHub Action"
           git config user.email "action@github.com"
           git add .
-          if git status --porcelain | grep .; then
-            git commit -m "Update compiled client from Civ14 - changed files only"
-            git push
-          else
-            echo "No changes detected, skipping commit and push"
-          fi
+          git commit -m "Update compiled client from Civ14"
+          git push
           cd -
           # Copy compiled output to target-repo/
           rsync -av --ignore-existing ./../bin/Content.Server/win-x64/ Content.Server/ || true
@@ -71,9 +67,5 @@ jobs:
           git config user.name "GitHub Action"
           git config user.email "action@github.com"
           git add .
-          if git status --porcelain | grep .; then
-            git commit -m "Update compiled server from Civ14 - changed files only"
-            git push
-          else
-            echo "No changes detected, skipping commit and push"
-          fi
+          git commit -m "Update compiled server from Civ14 - changed files only"
+          git push