diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..3326da4 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,51 @@ +name: CI/CD +on: + push: + branches: + - main + +jobs: + build-deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + registry-url: 'https://registry.npmjs.org' + + - name: Create idoc config. + run: | + cat > idoc.yml << EOF + site: "Resume Revise" + description: With our visual editor, you can easily customize your resume to fit your individual job hunting needs and stylistic preferences. + keywords: Resume, Resume Builder, resume templates, resume samples, resume examples, resume, resumes, resume tips, resume writing, create resume. + favicon: assets/logo.png + logo: ./assets/logo.png + openSource: https://github.com/jaywcjlove/ResumeRevise + tocs: false + sideEffectFiles: + - README.zh.md + element: + wrapper: style=max-width:720px; + menus: + Home: index.html + Apps: https://wangchujiang.com/#/app + About: https://wangchujiang.com/#/about + footer: | + App • + Projects • + Sponsor • + More Apps

+ Generated by idoc v{{idocVersion}} + EOF + + - run: npm install idoc@1 -g + - run: idoc + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + commit_message: ${{ github.event.head_commit.message }} + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./dist \ No newline at end of file diff --git a/README-zh.md b/README-zh.md new file mode 100644 index 0000000..0d4272e --- /dev/null +++ b/README-zh.md @@ -0,0 +1,32 @@ +[English](./README.md) + +
+
+
+ +

简历制作工具

+

+ 使用我们的可视化编辑器,您可以轻松定制您的简历,以满足您的个人求职需求和风格偏好。 +

+
+
+
+ +
+
+
+ SymbolScribe Screenshots + SymbolScribe Screenshots + SymbolScribe Screenshots + SymbolScribe Screenshots +
+
+
+ +## 专为 Mac 打造 + +作为一款原生 Mac 应用程序,Resumake 可为您提供该平台所能提供的最佳用户体验。 + +## 隐私第一 + +Mac 不会泄露任何信息,也无需登录。 \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..bb16d4b --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ +[中文](./README-zh.md) + +
+
+
+ +

Resume Revise

+

+ With our visual editor, you can easily customize your resume to fit your individual job hunting needs and stylistic preferences. +

+
+
+
+ +
+
+
+ SymbolScribe Screenshots + SymbolScribe Screenshots + SymbolScribe Screenshots + SymbolScribe Screenshots +
+
+
+ +## Built for Mac + +As a native Mac app, Resumake offers you the best user experience the platform has to offer. + +## Privacy First + +No information leaves your Mac. No logins are required either. \ No newline at end of file diff --git a/assets/logo.png b/assets/logo.png new file mode 100644 index 0000000..c63d322 Binary files /dev/null and b/assets/logo.png differ