mirror of
https://codeberg.org/vanous/huafetcher.git
synced 2025-01-10 15:12:01 +01:00
7 lines
157 B
Bash
Executable File
7 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
commitCount=$(git rev-list HEAD --count)
|
|
|
|
git tag -a "$commitCount" HEAD -m "Android Release $commitCount"
|
|
git push origin master:master --tags
|