mirror of
https://github.com/transloadit/uppy.git
synced 2026-08-04 15:54:16 +00:00
meta: fix URL generation in the release script
This commit is contained in:
parent
a95e723775
commit
9acac67882
1 changed files with 2 additions and 1 deletions
|
|
@ -4,6 +4,7 @@ import { createWriteStream, mkdirSync, readFileSync } from 'node:fs'
|
|||
import { spawnSync } from 'node:child_process'
|
||||
|
||||
import prompts from 'prompts'
|
||||
import { TARGET_BRANCH } from './config.js'
|
||||
|
||||
const ROOT = new URL('../../', import.meta.url)
|
||||
const PACKAGES_FOLDER = new URL('./packages/', ROOT)
|
||||
|
|
@ -125,7 +126,7 @@ export default async function pickSemverness (
|
|||
`Here are the commits that landed on @uppy/robodog since previous release:\n\n${stdout}\n`,
|
||||
)
|
||||
console.log(
|
||||
`Check the web UI at https://github.com/transloadit/uppy/tree/main/${encodeURI(
|
||||
`Check the web UI at https://github.com/transloadit/uppy/tree/${TARGET_BRANCH}/${encodeURI(
|
||||
location,
|
||||
)}.`,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue