mirror of
https://github.com/jaywcjlove/wxmp.git
synced 2026-04-05 20:20:13 +08:00
Compare commits
3 Commits
49bf21de71
...
fd4a7deed7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fd4a7deed7 | ||
|
|
11ed1f3b2c | ||
|
|
5a67d0785d |
7
.github/FUNDING.yml
vendored
7
.github/FUNDING.yml
vendored
@@ -1,3 +1,4 @@
|
|||||||
ko_fi: jaywcjlove
|
github: [jaywcjlove]
|
||||||
buy_me_a_coffee: jaywcjlove
|
#ko_fi: jaywcjlove
|
||||||
custom: ["https://www.paypal.me/kennyiseeyou", "https://jaywcjlove.github.io/#/sponsor"]
|
#buy_me_a_coffee: jaywcjlove
|
||||||
|
# custom: ["https://wangchujiang.com/#/sponsor"]
|
||||||
|
|||||||
55
.github/workflows/ci.yml
vendored
55
.github/workflows/ci.yml
vendored
@@ -8,10 +8,10 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 24
|
||||||
registry-url: 'https://registry.npmjs.org'
|
registry-url: 'https://registry.npmjs.org'
|
||||||
|
|
||||||
- run: npm install
|
- run: npm install
|
||||||
@@ -67,8 +67,8 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [build]
|
needs: [build]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: webiste
|
name: webiste
|
||||||
path: website/build
|
path: website/build
|
||||||
@@ -130,10 +130,11 @@ jobs:
|
|||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 24
|
||||||
|
registry-url: 'https://registry.npmjs.org'
|
||||||
|
|
||||||
- name: Install
|
- name: Install
|
||||||
run: npm install --build-from-source
|
run: npm install --build-from-source
|
||||||
@@ -142,7 +143,7 @@ jobs:
|
|||||||
- run: npm run build
|
- run: npm run build
|
||||||
# - run: npm run electron
|
# - run: npm run electron
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: webiste
|
name: webiste
|
||||||
path: website/build
|
path: website/build
|
||||||
@@ -167,16 +168,17 @@ jobs:
|
|||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 24
|
||||||
|
registry-url: 'https://registry.npmjs.org'
|
||||||
|
|
||||||
- run: npm install
|
- run: npm install
|
||||||
- run: npm run hoist
|
- run: npm run hoist
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: webiste
|
name: webiste
|
||||||
path: website/build
|
path: website/build
|
||||||
@@ -201,16 +203,18 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 45
|
timeout-minutes: 45
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 24
|
||||||
|
registry-url: 'https://registry.npmjs.org'
|
||||||
|
|
||||||
- run: npm install
|
- run: npm install
|
||||||
- run: npm run hoist
|
- run: npm run hoist
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
# - run: npm run electron
|
# - run: npm run electron
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: webiste
|
name: webiste
|
||||||
path: website/build
|
path: website/build
|
||||||
@@ -223,7 +227,7 @@ jobs:
|
|||||||
- working-directory: electron/app/dist
|
- working-directory: electron/app/dist
|
||||||
run: ls -R
|
run: ls -R
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v7
|
||||||
if: needs.build.outputs.successful == 'true'
|
if: needs.build.outputs.successful == 'true'
|
||||||
with:
|
with:
|
||||||
name: wxmp-linux
|
name: wxmp-linux
|
||||||
@@ -238,22 +242,23 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 45
|
timeout-minutes: 45
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 24
|
||||||
|
registry-url: 'https://registry.npmjs.org'
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: wxmp-linux
|
name: wxmp-linux
|
||||||
path: dist/linux
|
path: dist/linux
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: wxmp-macos
|
name: wxmp-macos
|
||||||
path: dist/macos
|
path: dist/macos
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: wxmp-windows
|
name: wxmp-windows
|
||||||
path: dist/windows
|
path: dist/windows
|
||||||
@@ -307,7 +312,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 4
|
timeout-minutes: 4
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.head_ref }}
|
ref: ${{ github.head_ref }}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
<div markdown="1">
|
<div markdown="1">
|
||||||
<sup>使用<a href="https://wangchujiang.com/#/app" target="_blank">我的应用</a>也是一种<a href="https://wangchujiang.com/#/sponsor" target="_blank">支持</a>我的方式:</sup>
|
<sup>使用<a href="https://wangchujiang.com/#/app" target="_blank">我的应用</a>也是一种<a href="https://wangchujiang.com/#/sponsor" target="_blank">支持</a>我的方式:</sup>
|
||||||
<br>
|
<br>
|
||||||
|
<a target="_blank" href="https://apps.apple.com/app/6758053530" title="Scap: Screenshot & Markup Edit for macOS"><img alt="Scap: Screenshot & Markup Edit" height="52" width="52" src="https://wangchujiang.com/appicon/scap.png"></a>
|
||||||
|
<a target="_blank" href="https://apps.apple.com/app/6757317079" title="Screen Test for macOS"><img alt="Screen Test" height="52" width="52" src="https://wangchujiang.com/appicon/screen-test.png"></a>
|
||||||
<a target="_blank" href="https://apps.apple.com/app/Deskmark/6755948110" title="Deskmark for macOS"><img alt="Deskmark" height="52" width="52" src="https://wangchujiang.com/appicon/deskmark.png"></a>
|
<a target="_blank" href="https://apps.apple.com/app/Deskmark/6755948110" title="Deskmark for macOS"><img alt="Deskmark" height="52" width="52" src="https://wangchujiang.com/appicon/deskmark.png"></a>
|
||||||
<a target="_blank" href="https://apps.apple.com/app/Keyzer/6500434773" title="Keyzer for macOS"><img alt="Keyzer" height="52" width="52" src="https://wangchujiang.com/appicon/keyzer.png"></a>
|
<a target="_blank" href="https://apps.apple.com/app/Keyzer/6500434773" title="Keyzer for macOS"><img alt="Keyzer" height="52" width="52" src="https://wangchujiang.com/appicon/keyzer.png"></a>
|
||||||
<a target="_blank" href="https://github.com/jaywcjlove/vidwall-hub" title="Vidwall Hub for macOS"><img alt="Vidwall Hub" height="52" width="52" src="https://wangchujiang.com/appicon/vidwall-hub.png"></a>
|
<a target="_blank" href="https://github.com/jaywcjlove/vidwall-hub" title="Vidwall Hub for macOS"><img alt="Vidwall Hub" height="52" width="52" src="https://wangchujiang.com/appicon/vidwall-hub.png"></a>
|
||||||
@@ -38,7 +40,8 @@
|
|||||||
<h1 align="center">微信公众号 Markdown 编辑器</h1>
|
<h1 align="center">微信公众号 Markdown 编辑器</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
[](https://jaywcjlove.github.io/#/sponsor)
|
[](https://jaywcjlove.github.io/#/sponsor)
|
||||||
|
[](https://x.com/jaywcjlove)
|
||||||
[](https://github.com/jaywcjlove/wxmp/actions/workflows/ci.yml)
|
[](https://github.com/jaywcjlove/wxmp/actions/workflows/ci.yml)
|
||||||
[](https://hub.docker.com/r/wcjiang/wxmp)
|
[](https://hub.docker.com/r/wcjiang/wxmp)
|
||||||
[](https://hub.docker.com/r/wcjiang/wxmp)
|
[](https://hub.docker.com/r/wcjiang/wxmp)
|
||||||
|
|||||||
Reference in New Issue
Block a user