2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-15 11:59:37 +03:00
Files
bbob/scripts/ci/release-version.js
T
2024-06-25 21:34:03 +02:00

9 lines
198 B
JavaScript

const config = require('./release.json');
const {unlink} = require('fs')
const commit_message = `v${config.releases[0].newVersion}`
unlink('./release.json', () => {})
console.log(commit_message)