-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'viur build release' only updates to latest Version #188
Comments
Yes, here comes further information! I want to stick to a specific version in {
"cli-version": "2.0.3",
"default": {
"builds": {
"admin": {
"command": "viur package install admin default 4.5.12",
"kind": "exec",
"version": "4.5.12"
}
}
}
} Then I run {
"cli-version": "2.0.3",
"default": {
"builds": {
"admin": {
"command": "viur package install admin",
"kind": "exec",
"version": "4.5.12"
}
}
}
} It is IMPORTANT that viur-cli uses the version specified as "version", and only updates when something like |
What about chaning the old format structure {
"cli-version": "2.0.3",
"default": {
"application_name": "my-project",
"builds": {
"admin": {
"command": "viur package install admin default 4.5.12",
"kind": "exec",
"version": "4.5.12"
},
"dashboard": {
"clean": "rm -rf deploy/static/dashboard && rm -rf sources/app/node_modules",
"command": "build",
"kind": "npm",
"source": "app"
},
"scriptor": {
"command": "viur package install scriptor default 2.1.2",
"kind": "exec",
"version": "2.1.2"
}
},
"distribution_folder": "./deploy",
"sources_folder": "./sources",
"version": "$(year)-$(month)-$(day)-$(user)"
},
"format": "2.0.0"
} generally to a new format structure {
"cli-version": "2.0.3",
"default": {
"application_name": "my-project",
"builds": {
"dashboard": {
"clean": "rm -rf deploy/static/dashboard && rm -rf sources/app/node_modules",
"command": "build",
"kind": "npm",
"source": "app"
},
},
"packages": {
"admin": "4.5.12",
"scriptor": "2.1.2"
},
"distribution_folder": "./deploy",
"sources_folder": "./sources",
"version": "$(year)-$(month)-$(day)-$(user)"
},
"format": "2.0.0"
} |
Before starting the Task of changing the format, i would like to fix the bug for the Version 2.1.0 deployment. Afterwards it is a generally good idea to rethink the way the ViUR Community wants to use the project json (As a document to customize their workflow by editing it or just as a collection of information about the project itself that should not be edited) |
Regarding this issue, I think that the solution of my last comment in #191 will be the best and simplest:
|
No description provided.
The text was updated successfully, but these errors were encountered: