Compare commits

...

2 Commits

Author SHA1 Message Date
Neale Pickett 40b9acf33f ci.sh can build a tarball now 2023-10-18 15:12:38 -06:00
Neale Pickett eba861aed6 Document prior releases 2023-10-18 15:01:51 -06:00
3 changed files with 19 additions and 0 deletions

3
.gitignore vendored
View File

@ -3,3 +3,6 @@
.idea
/vendor/
__debug_bin
*.tar.gz
transpile
mothd

View File

@ -13,6 +13,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- messages.html moved into theme
- Exported state now includes "Enabled" boolean
## [v4.4.11] - 2023-04-11
### Changed
- CI/CD now builds tags
## [v4.4.10] - 2022-10-21
### Changed
- `enabled` file is no longer used
- `hours.txt` parsing logs more verbosely
- Participant IDs are no longer used anywhere
- A few changes to CI/CD test reporting
## [v4.4.9] - 2022-05-12
### Changed
- Added a performance optimization for events with a large number of teams

View File

@ -43,6 +43,11 @@ case $ACTION in
run docker push $image
done
;;
release)
run go build -v ./cmd/mothd
run go build -v ./cmd/transpile
run tar czf moth-$(git tag --contains).$(uname -s)-$(uname -m).tar.gz mothd transpile theme
;;
*)
echo "Unknown action: $1" 1>&2
exit 1