mirror of
https://github.com/serge-chat/serge.git
synced 2024-01-15 09:32:12 +03:00
7 lines
244 B
Bash
Executable File
7 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
# run this script in the root of the project to recreate the index.yaml file and package the chart to docs/
|
|
|
|
helm lint k8s/serge/ &&
|
|
helm package -d docs k8s/serge/ &&
|
|
helm repo index docs --url https://serge-chat.github.io/serge
|