-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Fix: Edited deployment-script
- Loading branch information
1 parent
034a8c3
commit a30e5af
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const ghpages = require("gh-pages"); | ||
|
||
ghpages.publish("dist", { | ||
branch: "gh-pages", | ||
repo: "https://github.com/sebastianberge/sebastianberge.github.io.git", // Make sure this is your repository URL | ||
user: { | ||
name: "Sebastian Berge", | ||
email: "sebastian@berge.im", | ||
}, | ||
silent: false, | ||
dotfiles: true, | ||
message: "Deploy commit", | ||
token: process.env.GH_PAT, // Use the environment variable here | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters