ci: Make builds release-channel aware. Add support for scheduled beta builds (#7323)
ADO-1121 --------- Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
committed by
GitHub
parent
8f9fe6269b
commit
101255d186
@@ -196,6 +196,12 @@ export const useUIStore = defineStore(STORES.UI, {
|
||||
bannerStack: [],
|
||||
}),
|
||||
getters: {
|
||||
logo() {
|
||||
const { releaseChannel } = useSettingsStore().settings;
|
||||
return releaseChannel === 'stable'
|
||||
? 'n8n-logo-expanded.svg'
|
||||
: `n8n-${releaseChannel}-logo.svg`;
|
||||
},
|
||||
contextBasedTranslationKeys() {
|
||||
const settingsStore = useSettingsStore();
|
||||
const deploymentType = settingsStore.deploymentType;
|
||||
|
||||
Reference in New Issue
Block a user