-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e2ae3ae
commit 57a1c58
Showing
1 changed file
with
1 addition
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ const publishAction = async ({ context, newVersion, repo }) => { | |
await run('git init -b main'); | ||
await run('git config --global user.name "Chromatic"'); | ||
await run('git config --global user.email "[email protected]"'); | ||
await run(`git remote add origin ${process.env.GH_TOKEN}@github.com:${repo}.git`); | ||
await run(`git remote add origin git:${process.env.GH_TOKEN}@github.com:${repo}.git`); | ||
await run('git add .'); | ||
await run(`git commit -m "${newVersion}"`); | ||
await run('git tag v1'); | ||
|