-
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
c2da09e
commit 9b904d3
Showing
2 changed files
with
2 additions
and
2 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 |
---|---|---|
|
@@ -26,6 +26,6 @@ jobs: | |
- name: Deploy to Github Pages | ||
run: | | ||
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git | ||
pnpm deploy-demo -- -u "github-actions-bot <[email protected]>" | ||
pnpm deploy-demo" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
"publish-npm": "pnpm clean && pnpm build && npm publish", | ||
"start-demo": "pnpm --prefix demo start", | ||
"build-demo": "pnpm --prefix demo build", | ||
"deploy-demo": "pnpm build-demo && gh-pages -d demo/build", | ||
"deploy-demo": "pnpm build-demo && gh-pages -d demo/build -u 'github-actions-bot <[email protected]>'", | ||
"lint": "eslint .", | ||
"cypress:install": "cypress install", | ||
"test": "pnpm cypress run --component", | ||
|