## Summary
- Restores the `push ee image to CI` and `push ee image to prod` steps
in `.github/workflows/release.yml` and the EE goreleaser build entries
in `ci/goreleaser/goreleaser.yml`, which were inadvertently dropped by
PR #8237.
- Root cause: gromit config (PR #473, fixed in gromit PR #474) listed
only `release-test, distroless, fips` for tyk's `release-5.13.0`,
missing `ee` and `resolve-dashboard`. Since the `ee` build has `feature:
ee`, this removed all EE Docker build/push steps.
- After the fix, the regenerated `release.yml` contains 4 push image
steps: ee CI, ee prod, fips CI, fips prod.
See
https://github.com/TykTechnologies/tyk/commit/1d51bf98dc9862b26f5a48320bd8586ffb93d7e4
for the broken state (only `push fips image to CI`, no `push ee image to
CI`).
## Test plan
- [x] `grep -c "push ee image\|push fips image"
.github/workflows/release.yml` returns 4
- [ ] CI for release-5.13.0 runs and pushes both EE and FIPS Docker
images
- [ ] gromit PR #474 merged so future regenerations stay correct