Skip to content

Commit 333af4a

Browse files
committed
fix: allow dist/ folder to be committed for GitHub Action
1 parent 6a800e5 commit 333af4a

12 files changed

+206
-154
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ typings/
8181

8282
# Nuxt.js build / generate output
8383
.nuxt
84-
dist
84+
# dist - Commented out because GitHub Actions require dist/ to be committed
8585

8686
# Gatsby files
8787
.cache/

dist/github-client.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ export declare class GitHubClient {
1919
* Update repository description
2020
*/
2121
updateRepositoryDescription(description: string): Promise<void>;
22+
/**
23+
* Update repository homepage URL
24+
*/
25+
updateRepositoryHomepage(homepageUrl: string): Promise<void>;
2226
/**
2327
* Check if the current GitHub token has the necessary permissions
2428
*/

dist/github-client.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/github-client.js

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/github-client.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)