File tree Expand file tree Collapse file tree 3 files changed +14
-7
lines changed
Expand file tree Collapse file tree 3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 1+ API_PORT = 5000
2+ API_ADMIN_PORT = 5001
3+ WEB_PORT = 3000
4+ TAG = 0.17.0
Original file line number Diff line number Diff line change 1+ ** /* .python-version
12* .egg-info
23* .iml
34* .swp
67.DS_Store
78.classpath
89.editorconfig
10+ .env
911.gradle /
1012.idea /
1113.project
14+ .pytest_cache
1215.settings
1316.vscode /
1417__pycache__
15- .pytest_cache
16- venv
1718api /out /
1819bin /
1920build /
2021clients /java /out /
2122dist /
23+ examples /airflow /marquez.env
24+ examples /airflow /requirements.txt
25+ examples /airflow /whl
2226integrations /airflow /tests /integration /integration-requirements.txt
2327integrations /airflow /tests /integration /requirements.txt
24- examples /airflow /whl
25- examples /airflow /requirements.txt
26- examples /airflow /marquez.env
2728out /*
28- ** / * .python-version
29+ venv
2930
3031# Marquez configuration
3132marquez.yml
Original file line number Diff line number Diff line change @@ -156,6 +156,7 @@ sed -i "" "s/tag:.*/tag: ${RELEASE_VERSION}/g" ./chart/values.yaml
156156
157157# (4) Bump version in scripts
158158sed -i " " " s/TAG=.*/TAG=${RELEASE_VERSION} /g" ./docker/up.sh
159+ sed -i " " " s/TAG=.*/TAG=${RELEASE_VERSION} /g" .env.example
159160
160161# (5) Bump version in docs
161162sed -i " " " s/^ version:.*/ version: ${RELEASE_VERSION} /g" ./spec/openapi.yml
@@ -184,7 +185,8 @@ if [[ ${PUSH} = "true" ]]; then
184185 git push origin main && \
185186 git push origin " ${RELEASE_VERSION} "
186187else
187- echo " ...skipping push to 'main'; to push manually, use 'git push origin main && git push origin " ${RELEASE_VERSION} " '"
188+ echo " ...skipping push to 'main'; to push commits manually, run:"
189+ echo " $ git push origin main && git push origin " ${RELEASE_VERSION} " "
188190fi
189191
190192echo " DONE!"
You can’t perform that action at this time.
0 commit comments