File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ export class NextDeployInstance extends NextInstance {
148
148
149
149
try {
150
150
const deployUrlRegex = new RegExp (
151
- / h t t p s : \/ \/ a p p \. n e t l i f y \. c o m \/ s i t e s \/ (?< siteName > [ ^ \/ ] + ) \/ d e p l o y s \/ (?< deployID > [ 0 - 9 a - f ] + ) / gm,
151
+ / h t t p s : \/ \/ a p p \. n e t l i f y \. c o m \/ ( s i t e s | p r o j e c t s ) \/ (?< siteName > [ ^ \/ ] + ) \/ d e p l o y s \/ (?< deployID > [ 0 - 9 a - f ] + ) / gm,
152
152
) . exec ( deployRes . stdout )
153
153
const [ buildLogsUrl ] = deployUrlRegex || [ ]
154
154
const { deployID, siteName } = deployUrlRegex ?. groups || { }
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ async function deploySite(
281
281
282
282
const { siteName, deployID } =
283
283
new RegExp (
284
- / a p p \. n e t l i f y \. c o m \/ s i t e s \/ (?< siteName > [ ^ \/ ] + ) \/ d e p l o y s \/ (?< deployID > [ 0 - 9 a - f ] + ) / gm,
284
+ / a p p \. n e t l i f y \. c o m \/ ( s i t e s | p r o j e c t s ) \/ (?< siteName > [ ^ \/ ] + ) \/ d e p l o y s \/ (?< deployID > [ 0 - 9 a - f ] + ) / gm,
285
285
) . exec ( output ) ?. groups || { }
286
286
287
287
if ( ! deployID ) {
You can’t perform that action at this time.
0 commit comments