Update dependencies

This commit is contained in:
世界
2023-12-12 18:34:34 +08:00
parent 7d51b7ffb3
commit e6c443b935
5 changed files with 301 additions and 34 deletions

15
.github/release-branch.sh vendored Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
set -e -o pipefail
mkdir -p release
cd release
git init
git config --local user.email "github-action@users.noreply.github.com"
git config --local user.name "GitHub Action"
git remote add origin https://github-action:$GITHUB_TOKEN@github.com/SagerNet/sing-geosite.git
git branch -M release
cp ../*.db ../*.sha256sum .
git add .
git commit -m "Update release"
git push -f origin release