Build and deploy StartOS package / build (push) Failing after 49s
17 lines
659 B
TypeScript
17 lines
659 B
TypeScript
import { IMPOSSIBLE, VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
export const current = VersionInfo.of({
|
|
version: '0.1.3:1',
|
|
releaseNotes: {
|
|
en_US: 'Add automated Gitea builds and tagged StartOS deployments.',
|
|
es_ES: 'Agrega compilaciones automatizadas de Gitea y despliegues etiquetados en StartOS.',
|
|
de_DE: 'Fügt automatisierte Gitea-Builds und markierte StartOS-Bereitstellungen hinzu.',
|
|
pl_PL: 'Dodaje automatyczne kompilacje Gitea i oznaczone wdrożenia StartOS.',
|
|
fr_FR: 'Ajoute les builds Gitea automatisés et les déploiements StartOS étiquetés.',
|
|
},
|
|
migrations: {
|
|
up: async () => {},
|
|
down: IMPOSSIBLE,
|
|
},
|
|
})
|