Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5e47be1394 | |||
| eb18f8b5d1 |
@@ -1,7 +1,5 @@
|
|||||||
before:
|
before:
|
||||||
hooks:
|
hooks:
|
||||||
# tag and push
|
|
||||||
- ./release_tag.pl
|
|
||||||
# clean up/install modules
|
# clean up/install modules
|
||||||
- go mod tidy
|
- go mod tidy
|
||||||
builds:
|
builds:
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ while (my $l = <$fh>) {
|
|||||||
die "could not tag?\n" if $? != 0;
|
die "could not tag?\n" if $? != 0;
|
||||||
system ('git', 'push', 'origin', $tag);
|
system ('git', 'push', 'origin', $tag);
|
||||||
die "could not push tag?\n" if $? != 0;
|
die "could not push tag?\n" if $? != 0;
|
||||||
|
exit 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
die "no version in version/version.go?\n";
|
die "no version in version/version.go?\n";
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import (
|
|||||||
"golang.org/x/mod/semver"
|
"golang.org/x/mod/semver"
|
||||||
)
|
)
|
||||||
|
|
||||||
const Tag = "v0.0.1"
|
const Tag = "v0.0.2"
|
||||||
|
|
||||||
var versionInfo struct {
|
var versionInfo struct {
|
||||||
Local struct {
|
Local struct {
|
||||||
|
|||||||
Reference in New Issue
Block a user