Adds extraEnvVars to api deployment init container for db migrations #42
Workflow file for this run
This file contains 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
on: | |
pull_request: | |
paths: | |
- charts/** | |
- backend/charts/** | |
- worker/charts/** | |
- frontend/apps/web/charts/** | |
name: Helm | |
jobs: | |
lint: | |
name: Check Helm Readmes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check Docs | |
run: | | |
make helm/docs | |
if ! git diff --exit-code; then | |
echo "Documentation not up to date. Please run helm-docs and commit changes!" >&2 | |
exit 1 | |
fi |