mirror of https://github.com/dirtbags/moth.git
Compare commits
2 Commits
c20cc1484f
...
40b9acf33f
Author | SHA1 | Date |
---|---|---|
Neale Pickett | 40b9acf33f | |
Neale Pickett | eba861aed6 |
|
@ -3,3 +3,6 @@
|
|||
.idea
|
||||
/vendor/
|
||||
__debug_bin
|
||||
*.tar.gz
|
||||
transpile
|
||||
mothd
|
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue