We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b8a5d4 commit 7e7cdf4Copy full SHA for 7e7cdf4
deploy/actions.ts
@@ -28,9 +28,13 @@ export default async function deploy(
28
29
try {
30
await ghPages.publish(projectRoot, {});
31
- context.logger.info(
32
- `🚀 Your application is now available at ${options.deployUrl}`
33
- );
+ if (options.deployUrl) {
+ context.logger.info(
+ `🚀 Your application is now available at ${options.deployUrl}`
34
+ );
35
+ } else {
36
+ context.logger.info(`🚀 Your application is now on GitHub pages!`);
37
+ }
38
} catch (e) {
39
context.logger.error(e);
40
}
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "ngx-gh",
3
- "version": "0.0.0",
+ "version": "0.0.1",
4
"description": "Deployment from the Angular CLI to GitHub pages",
5
"main": "index.js",
6
"scripts": {
0 commit comments