File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -93227,7 +93227,7 @@ async function run() {
93227
93227
throw Error(deployment.error);
93228
93228
}
93229
93229
core.endGroup();
93230
- // Try to get the project id from an project alias
93230
+ // ProjectId may be an alias. Try to get the real project id from .firebaserc
93231
93231
const parsedProjectId = getProjectIdByAlias(projectId) || projectId;
93232
93232
const hostname = target ? `${target}.web.app` : `${parsedProjectId}.web.app`;
93233
93233
const url = `https://${hostname}/`;
@@ -93239,6 +93239,9 @@ async function run() {
93239
93239
summary: `[${hostname}](${url})`
93240
93240
}
93241
93241
});
93242
+ core.setOutput("urls", [url]);
93243
+ core.setOutput("expire_time", undefined);
93244
+ core.setOutput("details_url", url);
93242
93245
return;
93243
93246
}
93244
93247
const channelId = getChannelId(configuredChannelId, github.context);
Original file line number Diff line number Diff line change @@ -115,6 +115,11 @@ async function run() {
115
115
summary : `[${ hostname } ](${ url } )` ,
116
116
} ,
117
117
} ) ;
118
+
119
+ setOutput ( "urls" , [ url ] ) ;
120
+ setOutput ( "expire_time" , undefined ) ;
121
+ setOutput ( "details_url" , url ) ;
122
+
118
123
return ;
119
124
}
120
125
You can’t perform that action at this time.
0 commit comments