Browse Source

docs(readme): links

1.readme links 2.Github Actions:github to gitee
master
mengshukeji 5 years ago
parent
commit
63ef73c87d
  1. 40
      .github/workflows/gitee-mirror.yml
  2. 9
      README-zh.md
  3. 10
      README.md

40
.github/workflows/gitee-mirror.yml

@ -0,0 +1,40 @@
# 使用 GitHub Action 来解决手动同步到 Gitee 的问题
# 效果:github repo 代码更新之后,会自动同步至 gitee
# 使用到的 GitHub Action:https://github.com/Yikun/hub-mirror-action
# This is a basic workflow to help you get started with Actions
name: gitee-mirror<sync2gitee.com>
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- '*'
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Mirror the Github organization repos to Gitee.
uses: Yikun/hub-mirror-action@master
with:
src: github/mengshukeji
dst: gitee/mengshukeji
# 这里请填写与gitee上公钥匹配的的 ssh private key,参见:https://gitee.com/profile/sshkeys
# 填写地址:https://github.com/ly525/luban-h5/settings/secrets
dst_key: ${{ secrets.GITEE_PRIVATE_KEY }}
# 这里请填写 gitee的令牌,参见:https://gitee.com/profile/personal_access_tokens
# 填写地址:https://github.com/ly525/luban-h5/settings/secrets
dst_token: ${{ secrets.GITEE_TOKEN }}
# 项目同步白名单,可以选择填写多个,以英文逗号分割
static_list: "Luckyexcel,Luckysheet,LuckysheetDemo,LuckyexcelDemo,LuckysheetDocs,chartMix"
# 是否强制同步
force_update: true
# 账号类型:对 luban-h5 而言是 user,因为是个人项目;如果是企业项目,请填写 org,因为是组织下的项目
account_type: user

9
README-zh.md

@ -9,11 +9,12 @@
## 介绍
🚀Luckysheet ,一款纯前端类似excel的在线表格,功能强大、配置简单、完全开源。
## 文档
## 相关链接
| 源码 | 文档 | Demo | 插件Demo |
| ------ | -------- | ------ | ------ |
| [Github](https://github.com/mengshukeji/Luckysheet)| [在线文档](https://mengshukeji.github.io/LuckysheetDocs/zh/) | [在线Demo](https://mengshukeji.github.io/LuckysheetDemo) | [导入Excel Demo](https://mengshukeji.github.io/LuckyexcelDemo/) |
| [Gitee镜像](https://gitee.com/mengshukeji/Luckysheet)| [Gitee在线文档](https://mengshukeji.gitee.io/LuckysheetDocs/zh/) | [Gitee在线Demo](https://mengshukeji.gitee.io/luckysheetdemo/) | [Gitee导入Excel Demo](https://mengshukeji.gitee.io/luckyexceldemo/) |
[在线文档](https://mengshukeji.gitee.io/LuckysheetDocs/zh/)
[在线demo](https://mengshukeji.gitee.io/luckysheetdemo/) / [导入excel demo](https://mengshukeji.gitee.io/luckyexceldemo/)
![演示](/docs/.vuepress/public/img/LuckysheetDemo.gif)

10
README.md

@ -15,11 +15,11 @@ English| [简体中文](./README-zh.md)
## Introduction
🚀Luckysheet is an online spreadsheet like excel that is powerful, simple to configure, and completely open source.
## Documentation
[Online documentation](https://mengshukeji.github.io/LuckysheetDocs/)
[Online demo](https://mengshukeji.github.io/LuckysheetDemo/) / [Import excel demo](https://mengshukeji.github.io/LuckyexcelDemo/)
## Links
| Source Code | Documentation | Demo | Plugins Demo |
| ------ | -------- | ------ | ------ |
| [Github](https://github.com/mengshukeji/Luckysheet)| [Online Documentation](https://mengshukeji.github.io/LuckysheetDocs/) | [Online Demo](https://mengshukeji.github.io/LuckysheetDemo) | [Import Excel Demo](https://mengshukeji.github.io/LuckyexcelDemo/) |
| [Gitee Mirror](https://gitee.com/mengshukeji/Luckysheet)| [Gitee Online Documentation](https://mengshukeji.gitee.io/LuckysheetDocs/) | [Gitee Online Demo](https://mengshukeji.gitee.io/luckysheetdemo/) | [Gitee Import Excel Demo](https://mengshukeji.gitee.io/luckyexceldemo/) |
![Demo](/docs/.vuepress/public/img/LuckysheetDemo.gif)

Loading…
Cancel
Save