Compare commits

..

No commits in common. "40b9acf33f640bb5dc66c879ede1c210d5ab2397" and "c20cc1484fd073f701a091338ba1ce9fe0bb21ba" have entirely different histories.

3 changed files with 0 additions and 19 deletions

3
.gitignore vendored
View File

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

View File

@ -13,17 +13,6 @@ 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,11 +43,6 @@ 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