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:
@@ -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
|
||||
|
||||
@@ -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 }}
|
||||
@@ -101,3 +101,5 @@ enable_prometheus_monitoring: false
|
||||
cert_manager_issuer: letsencrypt-staging
|
||||
|
||||
helm_test_enabled: true
|
||||
|
||||
create_namespace: true
|
||||
|
||||
Reference in New Issue
Block a user