From 3bf74c55ff8062bd3dbd085b853045301aaf9274 Mon Sep 17 00:00:00 2001 From: Fhilipe Coelho Date: Sun, 14 Apr 2024 23:01:03 -0300 Subject: [PATCH] chore: delete sync.yml --- .github/workflows/sync.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/sync.yml diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml deleted file mode 100644 index 3755cccd..00000000 --- a/.github/workflows/sync.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Sync - -on: - push: - branches: "**" - -jobs: - sync: - runs-on: ubuntu-latest - - steps: - - name: Check out Git repository - uses: actions/checkout@v4 - - - name: Sync with remote repository - run: | - rm -rf .git - git init - git remote add origin https://hydralauncher:${{ secrets.HYDRA_GITHUB_SECRET }}@github.com/hydralauncher/hydra - git config --global init.defaultBranch main - git config --global user.name "GitHub Actions" - git config --global user.email "<>" - git checkout -b main - git add . - git commit -a -m "$GITHUB_SHA" - git push origin main --force