Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feature] 简历部分内容标注/高亮 #74

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c5ba48d
chore: 修复依赖无query-string导致的报错;
GrinZero Jul 16, 2022
7ead433
feat: 新增useRightClickMenu和useAppendRootNode两个自定义hook;
GrinZero Jul 16, 2022
67c1985
feat: MagicStyleMenu base;
GrinZero Jul 16, 2022
84c49b1
feat: 颜色sign;
Jul 18, 2022
4aee312
fix: some bug for sign;
Jul 18, 2022
017585f
feat: effect->时间回溯
GrinZero Jul 18, 2022
aadb3c7
feat: 太不稳定了
GrinZero Jul 18, 2022
7e0e6ff
feat: add default theme;
Jul 19, 2022
def91c8
fix: mountEffect need to use outerText but not innerText;
Jul 19, 2022
2eb24e3
fix:修复反向选择无效的缺陷
Jul 19, 2022
ea0cced
fix: sign error to show message
Jul 19, 2022
f3e9821
fix: clientHeight + clientY + scrollTop&& we must use memoAttr to sav…
GrinZero Jul 19, 2022
72a41a2
feat: useRightClickMenu return instance
GrinZero Jul 19, 2022
2c2ca92
refar: useAppendRootNode update the render function;
GrinZero Jul 21, 2022
ff24c65
chore: update useRightClickMenu
GrinZero Jul 23, 2022
7ef4a13
refar: 优化useRightClickMenu;
GrinZero Jul 24, 2022
df96e2c
refar: let container outside the useEffect and use it in dep;
GrinZero Jul 24, 2022
2aaedba
feat: mountList正回溯链条完毕+项目精力/主要工作映射+一些i18n添加
GrinZero Sep 24, 2022
7498ad1
fix: the bug from hook use document,use isBrowser to resolve;
GrinZero Sep 24, 2022
f85129f
ci: update deploy
GrinZero Sep 24, 2022
0246489
ci: the deploy
GrinZero Sep 24, 2022
3c42246
ci: update for public
GrinZero Sep 24, 2022
a5a0a41
ci: update for public
GrinZero Sep 24, 2022
18f25fc
fix: undefined is not null;
GrinZero Sep 24, 2022
2a6d8d7
fix: the bug about input make the modal
GrinZero Sep 27, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 16 additions & 13 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
name: github pages

on:
push:
branches:
- master # Set a branch name to trigger deployment
workflow_dispatch:

- master
jobs:
deploy:
runs-on: ubuntu-18.04
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 12
node-version: 16

- run: npm install
- run: npm run build
- name: Install and Build
run: |
npm install -g pnpm
pnpm install
npm run build

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public

publish_branch: gh-pages
publish_dir: ${{ github.workspace }}/public
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"cross-fetch": "^3.1.4",
"gatsby-plugin-google-gtag": "^4.4.0",
"lodash-es": "^4.17.21",
"query-string": "^7.1.1",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-dnd": "^14.0.2",
Expand Down