You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: implement PushCategoryCommand for pushing locale markdown files
- Added a new command `PushCategoryCommand` to push locale markdown files as separate OCI layers from a specified scroll directory.
- Removed the deprecated `PushMetaCommand` and updated the `PushCommand` to include the new category command.
- Enhanced the OCI client to support pushing categories with a regex pattern for file matching.
Copy file name to clipboardExpand all lines: cmd/registry_push.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ var PushCommand = &cobra.Command{
94
94
}
95
95
96
96
funcinit() {
97
-
PushCommand.AddCommand(PushMetaCommand)
97
+
PushCommand.AddCommand(PushCategoryCommand)
98
98
99
99
PushCommand.Flags().StringVarP(&minRam, "min-ram", "r", minRam, "Minimum RAM required to run the application. (Will be added as a manifest annotation gg.druid.scroll.minRam)")
100
100
PushCommand.Flags().StringVarP(&minCpu, "min-cpu", "c", minCpu, "Minimum CPU required to run the application. (Will be added as a manifest annotation gg.druid.scroll.minCpu)")
0 commit comments