mirror of
https://github.com/ouchadam/small-talk.git
synced 2025-02-01 20:16:44 +01:00
add missing toString in release pipeline
This commit is contained in:
parent
5eedb31d46
commit
c5b240cc3c
@ -139,7 +139,7 @@ const incrementVersionFile = async (github, branchName) => {
|
||||
const today = new Date()
|
||||
const month = (today.getMonth() + 1).toString().padStart(2, '0')
|
||||
const day = (today.getDay() + 1).toString().padStart(2, '0')
|
||||
const year = today.getFullYear().slice(-2)
|
||||
const year = today.getFullYear().toString().slice(-2)
|
||||
const todayFormatted = `${year}/${month}/${day}`
|
||||
|
||||
let updatedVersionName = undefined
|
||||
|
Loading…
x
Reference in New Issue
Block a user