gergo/hotfixes (#785)

* ci(circleci): publish npm packages with the implicit default `latest` tag

* feat(helm chart): add a conditional flag for creating k8s namespace in the helm chart

* fix(server package.json): fix cross-env variable string naming

fix #780
This commit is contained in:
Gergő Jedlicska
2022-05-30 19:40:20 +02:00
committed by GitHub
parent 1f5f5ef943
commit 1c234a86b2
4 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -265,7 +265,7 @@ jobs:
- run:
name: publish to npm
command: 'yarn workspaces foreach -pv --no-private npm publish --access public --tag next'
command: 'yarn workspaces foreach -pv --no-private npm publish --access public'
# - run:
# name: commit changes
+1 -1
View File
@@ -15,7 +15,7 @@
"node": "^16.0.0"
},
"scripts": {
"dev": "cross-env 'NODE_ENV=development' 'DEBUG=speckle:*' nodemon ./bin/www --watch . --watch ./bin/www -e js,graphql,env",
"dev": "cross-env NODE_ENV=development DEBUG='speckle:*' nodemon ./bin/www --watch . --watch ./bin/www -e js,graphql,env",
"dev:server:test": "cross-env NODE_ENV=test DEBUG=speckle:* node ./bin/www",
"test": "cross-env NODE_ENV=test mocha",
"test:coverage": "cross-env NODE_ENV=test nyc --reporter lcov mocha",
@@ -1,4 +1,6 @@
{{- if .Values.create_namespace }}
apiVersion: v1
kind: Namespace
metadata:
name: {{ .Values.namespace }}
name: {{ .Values.namespace }}
{{- end }}
+2
View File
@@ -101,3 +101,5 @@ enable_prometheus_monitoring: false
cert_manager_issuer: letsencrypt-staging
helm_test_enabled: true
create_namespace: true