1 parent 6081b21 commit f12734eCopy full SHA for f12734e
2 files changed
.github/workflows/update.yaml
@@ -3,7 +3,7 @@ name: update
3
4
on:
5
schedule:
6
- - cron: '30 2 * * 6'
+ - cron: '30 9 * * SUN'
7
8
jobs:
9
update:
tag.sh
@@ -3,15 +3,15 @@
set -e
if ! git diff-index --quiet HEAD; then
- git config --global user.name 'Gherynos'
- git config --global user.email 'gherynos@users.noreply.github.com'
+ git config --global user.name 'github-actions[bot]'
+ git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
git commit -am "patch: update tools versions"
git push
10
11
version=$(git describe --abbrev=0 --tags)
12
new_version=$(perl -pe 's/(\d+)(?!.*\d+)/$1+1/e' <<< "$version")
13
echo "$version -> $new_version"
14
- git tag "temp"
+ git tag "$new_version"
15
16
git push --tags
17
fi
0 commit comments