baf9dd8dfe3152e4ea104de0a9b83471b6e92368

This commit is contained in:
GitHub Actions 2024-04-09 23:30:27 +00:00
commit 9403236d7e
146 changed files with 37505 additions and 0 deletions

26
.github/workflows/sync.yml vendored Normal file
View file

@ -0,0 +1,26 @@
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