When changes are made to the event templates, they need to be recompiled. Right now that is only documented in source code at https://github.com/devopsdays/devopsdays-cli/blob/master/event/make_event_files.go#L23 ``` // to compile, cd to event directory and run `rice embed-go` ``` That's probably not amazing. The idea is to migrate from using [rice](https://github.com/GeertJohan/go.rice) to instead use [packr](https://github.com/gobuffalo/packr). There are two main things that need to be done: - [ ] Refactor [make_event_files.go](https://github.com/devopsdays/devopsdays-cli/blob/master/event/make_event_files.go) and [rice-box.go](https://github.com/devopsdays/devopsdays-cli/blob/master/event/rice-box.go) to use packr instead of rice - [ ] Update [.goreleaser.yml](https://github.com/devopsdays/devopsdays-cli/blob/master/.goreleaser.yml) to [run `packr` as part of the build](https://goreleaser.com/customization/#Global%20Hooks)
When changes are made to the event templates, they need to be recompiled. Right now that is only documented in source code at https://github.com/devopsdays/devopsdays-cli/blob/master/event/make_event_files.go#L23
That's probably not amazing.
The idea is to migrate from using rice to instead use packr.
There are two main things that need to be done:
packras part of the build