-
Notifications
You must be signed in to change notification settings - Fork 0
Docs: vision, architecture, status sweep; tag-driven release machinery #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
Kiran01bm
wants to merge
6
commits into
kiran01bm/phase-2-3-2-4-classifier-router
Choose a base branch
from
kiran01bm/oss-standup
base: kiran01bm/phase-2-3-2-4-classifier-router
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
ffb97fd
docs: frame the planner as PostgreSQL's missing ALGORITHM=/LOCK= decl…
Kiran01bm 0efb267
docs: add the vision statement
Kiran01bm 8a20e66
docs: expand architecture with the five front-end stages
Kiran01bm 167691a
Add tag-driven release machinery (goreleaser + workflow)
Kiran01bm 591f9a7
docs: align status and tense with implemented Phases 1-2.4
Kiran01bm c0430e5
ci: fix zizmor findings in the release workflow
Kiran01bm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| name: Release | ||
|
|
||
| on: | ||
| push: | ||
| tags: | ||
| - "v*" | ||
|
|
||
| permissions: | ||
| contents: write | ||
|
|
||
| jobs: | ||
| release: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
| persist-credentials: false | ||
|
|
||
| - name: Set up Go | ||
| uses: actions/setup-go@v5 | ||
| with: | ||
| go-version-file: go.mod | ||
| # Release artifacts must never be built from a shared cache a | ||
| # previous workflow could have poisoned. | ||
| cache: false | ||
|
|
||
| - name: Run GoReleaser | ||
| uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0 | ||
| with: | ||
| version: v2.8.2 | ||
| args: release --clean | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| version: 2 | ||
|
|
||
| builds: | ||
| - id: pg-sprite | ||
| main: ./cmd/pg-sprite | ||
| binary: pg-sprite | ||
| # The SQL parser is Wasm (wasilibs/go-pgquery), so the binary is pure Go | ||
| # and cross-compiles without cgo. | ||
| env: | ||
| - CGO_ENABLED=0 | ||
| ldflags: | ||
| - -X main.version={{.Tag}} | ||
| goos: | ||
| - linux | ||
| - darwin | ||
| goarch: | ||
| - amd64 | ||
| - arm64 | ||
| ignore: | ||
| - goos: darwin | ||
| goarch: amd64 | ||
|
|
||
| archives: | ||
| - id: pg-sprite | ||
| builds: | ||
| - pg-sprite | ||
| format: tar.gz | ||
| name_template: "pg-sprite_{{ .Version }}_{{ .Os }}_{{ .Arch }}" | ||
|
|
||
| release: | ||
| # If a release already exists for the tag, replace its assets rather than | ||
| # failing. This handles the case where a release is created via the GitHub | ||
| # UI before the workflow runs. | ||
| mode: replace | ||
|
|
||
| checksum: | ||
| name_template: "checksums.txt" | ||
|
|
||
| changelog: | ||
| sort: asc | ||
| filters: | ||
| exclude: | ||
| - "^docs:" | ||
| - "^test:" | ||
| - "^ci:" |
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.