mirror of
https://github.com/pompurin404/mihomo-party.git
synced 2024-11-16 03:32:17 +08:00
309 lines
10 KiB
YAML
309 lines
10 KiB
YAML
name: Build
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- v*
|
|
|
|
permissions: write-all
|
|
|
|
jobs:
|
|
windows:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
arch:
|
|
- x64
|
|
- ia32
|
|
- arm64
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Setup pnpm
|
|
run: npm install -g pnpm
|
|
- name: Install Dependencies
|
|
env:
|
|
npm_config_arch: ${{ matrix.arch }}
|
|
npm_config_target_arch: ${{ matrix.arch }}
|
|
run: |
|
|
pnpm install
|
|
pnpm add @mihomo-party/sysproxy-win32-${{ matrix.arch }}-msvc
|
|
pnpm prepare --${{ matrix.arch }}
|
|
- name: Build
|
|
env:
|
|
npm_config_arch: ${{ matrix.arch }}
|
|
npm_config_target_arch: ${{ matrix.arch }}
|
|
run: pnpm build:win --${{ matrix.arch }}
|
|
- name: Add Portable Flag
|
|
run: |
|
|
New-Item -Path "PORTABLE" -ItemType File
|
|
Get-ChildItem dist/*portable.7z | ForEach-Object {
|
|
7z a $_.FullName PORTABLE
|
|
}
|
|
- name: Generate checksums
|
|
run: pnpm checksum setup.exe portable.7z
|
|
- name: Upload Artifacts
|
|
if: startsWith(github.ref, 'refs/heads/')
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Windows ${{ matrix.arch }}
|
|
path: |
|
|
dist/*.sha256
|
|
dist/*setup.exe
|
|
dist/*portable.7z
|
|
if-no-files-found: error
|
|
- name: Publish Release
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: |
|
|
dist/*.sha256
|
|
dist/*setup.exe
|
|
dist/*portable.7z
|
|
body_path: changelog.md
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
windows7:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
arch:
|
|
- x64
|
|
- ia32
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Setup pnpm
|
|
run: npm install -g pnpm
|
|
- name: Install Dependencies
|
|
env:
|
|
npm_config_arch: ${{ matrix.arch }}
|
|
npm_config_target_arch: ${{ matrix.arch }}
|
|
run: |
|
|
pnpm install
|
|
pnpm add @mihomo-party/sysproxy-win32-${{ matrix.arch }}-msvc
|
|
pnpm add -D electron@22.3.27
|
|
(Get-Content electron-builder.yml) -replace 'windows', 'win7' | Set-Content electron-builder.yml
|
|
pnpm prepare --${{ matrix.arch }}
|
|
- name: Build
|
|
env:
|
|
npm_config_arch: ${{ matrix.arch }}
|
|
npm_config_target_arch: ${{ matrix.arch }}
|
|
run: pnpm build:win --${{ matrix.arch }}
|
|
- name: Add Portable Flag
|
|
run: |
|
|
New-Item -Path "PORTABLE" -ItemType File
|
|
Get-ChildItem dist/*portable.7z | ForEach-Object {
|
|
7z a $_.FullName PORTABLE
|
|
}
|
|
- name: Generate checksums
|
|
run: pnpm checksum setup.exe portable.7z
|
|
- name: Upload Artifacts
|
|
if: startsWith(github.ref, 'refs/heads/')
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Win7 ${{ matrix.arch }}
|
|
path: |
|
|
dist/*.sha256
|
|
dist/*setup.exe
|
|
dist/*portable.7z
|
|
if-no-files-found: error
|
|
- name: Publish Release
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: |
|
|
dist/*.sha256
|
|
dist/*setup.exe
|
|
dist/*portable.7z
|
|
body_path: changelog.md
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
linux:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
arch:
|
|
- x64
|
|
- arm64
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Setup pnpm
|
|
run: npm install -g pnpm
|
|
- name: Install Dependencies
|
|
env:
|
|
npm_config_arch: ${{ matrix.arch }}
|
|
npm_config_target_arch: ${{ matrix.arch }}
|
|
run: |
|
|
pnpm install
|
|
pnpm add @mihomo-party/sysproxy-linux-${{ matrix.arch }}-gnu
|
|
pnpm prepare --${{ matrix.arch }}
|
|
- name: Build
|
|
env:
|
|
npm_config_arch: ${{ matrix.arch }}
|
|
npm_config_target_arch: ${{ matrix.arch }}
|
|
run: pnpm build:linux --${{ matrix.arch }}
|
|
- name: Generate checksums
|
|
run: pnpm checksum .deb .rpm
|
|
- name: Upload Artifacts
|
|
if: startsWith(github.ref, 'refs/heads/')
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Linux ${{ matrix.arch }}
|
|
path: |
|
|
dist/*.sha256
|
|
dist/*.deb
|
|
dist/*.rpm
|
|
if-no-files-found: error
|
|
- name: Publish Release
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: |
|
|
dist/*.sha256
|
|
dist/*.deb
|
|
dist/*.rpm
|
|
body_path: changelog.md
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
macos:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
arch:
|
|
- x64
|
|
- arm64
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Setup pnpm
|
|
run: npm install -g pnpm
|
|
- name: Install Dependencies
|
|
env:
|
|
npm_config_arch: ${{ matrix.arch }}
|
|
npm_config_target_arch: ${{ matrix.arch }}
|
|
run: |
|
|
pnpm install
|
|
pnpm add @mihomo-party/sysproxy-darwin-${{ matrix.arch }}
|
|
pnpm prepare --${{ matrix.arch }}
|
|
- name: Build
|
|
env:
|
|
npm_config_arch: ${{ matrix.arch }}
|
|
npm_config_target_arch: ${{ matrix.arch }}
|
|
run: pnpm build:mac --${{ matrix.arch }}
|
|
- name: Generate checksums
|
|
run: pnpm checksum .dmg
|
|
- name: Upload Artifacts
|
|
if: startsWith(github.ref, 'refs/heads/')
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: MacOS ${{ matrix.arch }}
|
|
path: |
|
|
dist/*.sha256
|
|
dist/*.dmg
|
|
if-no-files-found: error
|
|
- name: Publish Release
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: |
|
|
dist/*.sha256
|
|
dist/*.dmg
|
|
body_path: changelog.md
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
updater:
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
needs: [windows, macos, windows7]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Setup pnpm
|
|
run: npm install -g pnpm
|
|
- name: Build Latest
|
|
run: pnpm install && pnpm updater
|
|
- name: Telegram Notification
|
|
env:
|
|
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
|
|
run: pnpm telegram
|
|
- name: Publish Release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: latest.yml
|
|
body_path: changelog.md
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
aur-release-updater:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
pkgname:
|
|
- mihomo-party-electron-bin
|
|
- mihomo-party-electron
|
|
- mihomo-party-bin
|
|
- mihomo-party
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
needs: linux
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Update Version
|
|
run: |
|
|
sed -i "s/pkgver=.*/pkgver=$(echo ${{ github.ref }} | tr -d 'refs/tags/v')/" aur/${{ matrix.pkgname }}/PKGBUILD
|
|
- name: Update Checksums
|
|
if: matrix.pkgname == 'mihomo-party' || matrix.pkgname == 'mihomo-party-electron'
|
|
run: |
|
|
wget https://github.com/mihomo-party-org/mihomo-party/archive/refs/tags/$(echo ${{ github.ref }} | tr -d 'refs/tags/').tar.gz -O release.tar.gz
|
|
sed -i "s/sha256sums=.*/sha256sums=(\"$(sha256sum ./release.tar.gz | awk '{print $1}')\"/" aur/mihomo-party/PKGBUILD
|
|
sed -i "s/sha256sums=.*/sha256sums=(\"$(sha256sum ./release.tar.gz | awk '{print $1}')\"/" aur/mihomo-party-electron/PKGBUILD
|
|
- name: Update Checksums
|
|
if: matrix.pkgname == 'mihomo-party-bin' || matrix.pkgname == 'mihomo-party-electron-bin'
|
|
run: |
|
|
wget https://github.com/mihomo-party-org/mihomo-party/releases/download/$(echo ${{ github.ref }} | tr -d 'refs/tags/')/mihomo-party-linux-$(echo ${{ github.ref }} | tr -d 'refs/tags/v')-amd64.deb -O amd64.deb
|
|
wget https://github.com/mihomo-party-org/mihomo-party/releases/download/$(echo ${{ github.ref }} | tr -d 'refs/tags/')/mihomo-party-linux-$(echo ${{ github.ref }} | tr -d 'refs/tags/v')-arm64.deb -O arm64.deb
|
|
sed -i "s/sha256sums_x86_64=.*/sha256sums_x86_64=(\"$(sha256sum ./amd64.deb | awk '{print $1}')\")/" aur/mihomo-party-bin/PKGBUILD
|
|
sed -i "s/sha256sums_aarch64=.*/sha256sums_aarch64=(\"$(sha256sum ./arm64.deb | awk '{print $1}')\")/" aur/mihomo-party-bin/PKGBUILD
|
|
sed -i "s/sha256sums_x86_64=.*/sha256sums_x86_64=(\"$(sha256sum ./amd64.deb | awk '{print $1}')\")/" aur/mihomo-party-electron-bin/PKGBUILD
|
|
sed -i "s/sha256sums_aarch64=.*/sha256sums_aarch64=(\"$(sha256sum ./arm64.deb | awk '{print $1}')\")/" aur/mihomo-party-electron-bin/PKGBUILD
|
|
- name: Publish AUR package
|
|
uses: KSXGitHub/github-actions-deploy-aur@v2.7.2
|
|
with:
|
|
pkgname: ${{ matrix.pkgname }}
|
|
pkgbuild: aur/${{ matrix.pkgname }}/PKGBUILD
|
|
commit_username: pompurin404
|
|
commit_email: pompurin404@mihomo.party
|
|
ssh_private_key: ${{ secrets.PRIVATE_KEY }}
|
|
commit_message: Update AUR package
|
|
ssh_keyscan_types: rsa,ed25519
|
|
allow_empty_commits: false
|
|
|
|
aur-git-updater:
|
|
if: startsWith(github.ref, 'refs/heads/')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: update version
|
|
run: |
|
|
sed -i "s/pkgver=.*/pkgver=$(git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' | tr -d 'v')/" aur/mihomo-party-git/PKGBUILD
|
|
- name: Publish AUR package
|
|
uses: KSXGitHub/github-actions-deploy-aur@v2.7.2
|
|
with:
|
|
pkgname: mihomo-party-git
|
|
pkgbuild: aur/mihomo-party-git/PKGBUILD
|
|
commit_username: pompurin404
|
|
commit_email: pompurin404@mihomo.party
|
|
ssh_private_key: ${{ secrets.PRIVATE_KEY }}
|
|
commit_message: Update AUR package
|
|
ssh_keyscan_types: rsa,ed25519
|
|
allow_empty_commits: false
|