-
Notifications
You must be signed in to change notification settings - Fork 59
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
Showing
6 changed files
with
114 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,84 @@ | ||
name: Build wxhelper-3.9.8.25 | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
paths-ignore: | ||
- '**.md' | ||
- '**.spec.js' | ||
- '.idea' | ||
- '.vscode' | ||
- '.dockerignore' | ||
- 'Dockerfile' | ||
- '.gitignore' | ||
- '.github/**' | ||
- '!.github/workflows/build.yml' | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
# os: [macos-latest, ubuntu-latest, windows-latest] | ||
os: [windows-latest] | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Install Dependencies | ||
run: npm install | ||
|
||
- name: Build Release Files | ||
run: npm run build | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Cleanup Artifacts for MacOS | ||
if: matrix.os == 'macos-latest' | ||
run: | | ||
npx rimraf --glob "release/!(*.dmg)" | ||
- name: Cleanup Artifacts for Ubuntu | ||
if: matrix.os == 'ubuntu-latest' | ||
run: | | ||
npx rimraf --glob "release/!(*.AppImage)" | ||
- name: Cleanup Artifacts for Windows | ||
if: matrix.os == 'windows-latest' | ||
run: | | ||
npx rimraf --glob "release/!(*.exe)" | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: release_on_${{ matrix.os }} | ||
path: release | ||
retention-days: 5 | ||
|
||
- name: Extract Version | ||
id: extract_version | ||
run: | | ||
echo "::set-output name=version::$(echo ${{ github.ref }} | sed 's/refs\/tags\///')" | ||
- name: Create Release and Upload Release Asset | ||
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
tag_name: ${{ steps.extract_version.outputs.version }} | ||
name: wxhelper-3.9.8.25 | ||
files: 'release/**' | ||
body: '' | ||
# prerelease: true | ||
# generate_release_notes: true | ||
# fail_on_unmatched_files: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# 常见问题 | ||
|
||
1. [npm i 报错](https://github.com/yzqzy/wechat-assistant/issues/8) | ||
2. [注入微信3.9.5.81后崩溃](https://github.com/yzqzy/wechat-assistant/issues/9) | ||
3. [注入闪退问题](https://github.com/yzqzy/wechat-assistant/issues/4) | ||
4. [使用不兼容版本](https://github.com/yzqzy/wechat-assistant/issues/7) | ||
5. [微信提示版本低](https://github.com/yzqzy/wechat-assistant/issues/22) |
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
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
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