-
Notifications
You must be signed in to change notification settings - Fork 34
ci: add regenerate-artifacts composite action and fix release branch workflow #504
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
Merged
mergify
merged 7 commits into
opendatahub-io:main
from
eoinfennessy:address-pr499-review-comments
Jul 16, 2026
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
e9ee853
ci: add composite action for artifact regeneration
eoinfennessy 830fa97
ci: add lockfile regen and switch to uv in release branch workflow
eoinfennessy 5953b03
docs: fix stale Containerfile and lockfile references in README
eoinfennessy 1228f25
ci: split showroom workflow into build and test jobs
eoinfennessy babc8bd
Revert "ci: split showroom workflow into build and test jobs"
eoinfennessy 06b4e43
Merge branch 'main' into address-pr499-review-comments
eoinfennessy 22c76ff
Merge branch 'main' into address-pr499-review-comments
eoinfennessy 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,28 @@ | ||
| name: Regenerate distribution artifacts | ||
| description: Run the build scripts that regenerate config, lockfiles, Containerfile, and verify secrets | ||
|
|
||
| inputs: | ||
| ogx-version: | ||
| description: 'OGX version to set (overrides OGX_VERSION from build.env)' | ||
| required: false | ||
| default: '' | ||
| working-directory: | ||
| description: 'Working directory for running build scripts' | ||
| required: false | ||
| default: '.' | ||
|
|
||
| runs: | ||
| using: "composite" | ||
| steps: | ||
| - name: Regenerate distribution artifacts | ||
| shell: bash | ||
| working-directory: ${{ inputs.working-directory }} | ||
| env: | ||
| OGX_VERSION_OVERRIDE: ${{ inputs.ogx-version }} | ||
| run: | | ||
| if [ -n "$OGX_VERSION_OVERRIDE" ]; then | ||
| export OGX_VERSION="$OGX_VERSION_OVERRIDE" | ||
| fi | ||
| uv run build/gen_config.py | ||
| uv run build/gen_lockfile.py | ||
| uv run build/gen_containerfile.py | ||
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
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.
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.