forked from Kenshin0011/chat_ui_react
-
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 branch information
1 parent
4b28feb
commit f243503
Showing
1 changed file
with
5 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 |
---|---|---|
|
@@ -28,14 +28,17 @@ jobs: | |
cd front | ||
npm run build | ||
- name: Configure git | ||
run: | | ||
git config --global user.name 'github-actions' | ||
git config --global user.email '[email protected]' | ||
- name: Deploy to GitHub Pages | ||
run: | | ||
cd front | ||
npm run deploy | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./build | ||
# keep_filesをtrueにすると、git pushの度に一旦全てのファイルが削除される挙動を抑制できる | ||
# keep_files: true | ||
user_name: github-actions | ||
user_email: [email protected] |