1
0
Fork 0
salty-dog/src/version.ts

16 lines
297 B
TypeScript
Raw Normal View History

2019-06-15 20:20:04 +00:00
export const VERSION_INFO = {
app: {
2019-06-15 21:17:26 +00:00
name: '{{ APP_NAME }}',
2019-06-25 04:47:12 +00:00
version: '{{ APP_VERSION }}',
2019-06-15 20:20:04 +00:00
},
build: {
2019-06-15 21:17:26 +00:00
job: '{{ BUILD_JOB }}',
node: '{{ NODE_VERSION }}',
runner: '{{ BUILD_RUNNER }}',
2019-06-15 20:20:04 +00:00
},
git: {
2019-06-15 21:17:26 +00:00
branch: '{{ GIT_BRANCH }}',
commit: '{{ GIT_COMMIT }}',
2019-06-15 20:20:04 +00:00
},
};