-
Notifications
You must be signed in to change notification settings - Fork 1
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
80ec87a
commit 2bc9d90
Showing
1 changed file
with
5 additions
and
0 deletions.
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 |
---|---|---|
|
@@ -28,9 +28,14 @@ jobs: | |
git config --global user.email "[email protected]" | ||
git config --global user.name "Alicja Januszkiewicz" | ||
git checkout --orphan gh-pages | ||
git add dist/ | ||
git stash | ||
git rm -rf . | ||
git clean -dfx | ||
git stash pop | ||
git reset | ||
mv dist/* . # Move artifacts to root directory | ||
rm dist -r | ||
git add . | ||
git commit -m "Deploy binary artifact to gh-pages" | ||
git push origin gh-pages --force |