Add --rerender flag to run command#46
Merged
Merged
Conversation
When set, each script is re-rendered from its source file at the start of every cycle through its steps, regenerating template values such as randomObjectID for each cycle instead of baking them in once at startup. - scriptSource records a script's origin (file, vars, document index) and re-renders it on demand via config.Load + Prepare. - StepForward swaps in a freshly rendered script at each cycle boundary (numExecuted % len(steps) == 0); render errors log a warning and reuse the previous render. - RunWorker copies the source into each per-worker context, so re-rendering is per-worker.
Add a nightly workflow that builds and pushes thumper images on every push to main, mirroring SpiceDB's nightly setup but adapted to thumper's existing release pipeline (no snaps, ko-based multi-arch, no buildx). - .github/workflows/nightly.yaml: push-to-main trigger running goreleaser with the nightly config. - .goreleaser.nightly.yaml: builds linux amd64/arm64 images to the existing authzed / ghcr.io/authzed / quay.io/authzed repos, tagged only with a commit-based version (no "latest") so release images are never overwritten.
vroldanbet
approved these changes
Jun 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When set, each script is re-rendered from its source file at the start of every cycle through its steps, regenerating template values such as randomObjectID for each cycle instead of baking them in once at startup.
Description
Testing
References