mihomo-party/.github/workflows/build.yml

235 lines
7.9 KiB
YAML
Raw Normal View History

2024-07-30 11:17:41 +08:00
name: Build
on:
push:
branches:
- master
2024-08-05 21:08:58 +08:00
tags:
- v*
2024-07-30 11:17:41 +08:00
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
with:
fetch-depth: 0
- name: Setup Nodejs
uses: actions/setup-node@v4
with:
node-version: 22
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Install Dependencies
2024-08-06 20:02:26 +08:00
env:
npm_config_arch: ${{ matrix.arch }}
npm_config_target_arch: ${{ matrix.arch }}
2024-07-31 21:04:30 +08:00
run: |
pnpm install
2024-08-09 17:31:13 +08:00
pnpm add @mihomo-party/sysproxy-win32-${{ matrix.arch }}-msvc
2024-07-31 21:04:30 +08:00
pnpm prepare --${{ matrix.arch }}
2024-07-30 11:17:41 +08:00
- name: Build
2024-08-06 20:02:26 +08:00
env:
npm_config_arch: ${{ matrix.arch }}
npm_config_target_arch: ${{ matrix.arch }}
2024-07-30 11:17:41 +08:00
run: pnpm build:win --${{ matrix.arch }}
- name: Upload Artifacts
2024-08-07 15:25:31 +08:00
if: startsWith(github.ref, 'refs/heads/')
2024-07-30 11:17:41 +08:00
uses: actions/upload-artifact@v4
with:
name: Windows ${{ matrix.arch }}
2024-08-14 16:38:40 +08:00
path: |
dist/*setup.exe
dist/*portable.7z
2024-07-30 11:17:41 +08:00
if-no-files-found: error
2024-08-05 21:08:58 +08:00
- name: Publish Release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
with:
files: |
2024-08-14 16:38:40 +08:00
dist/*setup.exe
dist/*portable.7z
2024-08-05 22:45:29 +08:00
dist/latest.yml
2024-08-15 15:53:58 +08:00
body_path: changelog.md
2024-08-05 21:08:58 +08:00
token: ${{ secrets.GITHUB_TOKEN }}
2024-07-30 11:17:41 +08:00
linux:
strategy:
fail-fast: false
matrix:
arch:
- x64
- arm64
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Nodejs
uses: actions/setup-node@v4
with:
node-version: 22
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Install Dependencies
2024-08-06 20:02:26 +08:00
env:
npm_config_arch: ${{ matrix.arch }}
npm_config_target_arch: ${{ matrix.arch }}
2024-07-31 21:04:30 +08:00
run: |
pnpm install
2024-08-09 17:31:13 +08:00
pnpm add @mihomo-party/sysproxy-linux-${{ matrix.arch }}-gnu
2024-07-31 21:04:30 +08:00
pnpm prepare --${{ matrix.arch }}
2024-07-30 11:17:41 +08:00
- name: Build
2024-08-06 20:02:26 +08:00
env:
npm_config_arch: ${{ matrix.arch }}
npm_config_target_arch: ${{ matrix.arch }}
2024-07-30 11:17:41 +08:00
run: pnpm build:linux --${{ matrix.arch }}
- name: Upload Artifacts
2024-08-07 15:25:31 +08:00
if: startsWith(github.ref, 'refs/heads/')
2024-07-30 11:17:41 +08:00
uses: actions/upload-artifact@v4
with:
name: Linux ${{ matrix.arch }}
path: |
dist/*.deb
dist/*.rpm
if-no-files-found: error
2024-08-05 21:08:58 +08:00
- name: Publish Release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
with:
files: |
dist/*.deb
dist/*.rpm
2024-08-15 15:53:58 +08:00
body_path: changelog.md
2024-08-05 21:08:58 +08:00
token: ${{ secrets.GITHUB_TOKEN }}
2024-07-30 11:17:41 +08:00
macos:
strategy:
fail-fast: false
matrix:
arch:
- x64
- arm64
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Nodejs
uses: actions/setup-node@v4
with:
node-version: 22
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Install Dependencies
2024-08-06 20:02:26 +08:00
env:
npm_config_arch: ${{ matrix.arch }}
npm_config_target_arch: ${{ matrix.arch }}
2024-07-31 21:04:30 +08:00
run: |
pnpm install
2024-08-09 17:31:13 +08:00
pnpm add @mihomo-party/sysproxy-darwin-${{ matrix.arch }}
2024-07-31 21:04:30 +08:00
pnpm prepare --${{ matrix.arch }}
2024-07-30 11:17:41 +08:00
- name: Build
2024-08-06 20:02:26 +08:00
env:
npm_config_arch: ${{ matrix.arch }}
npm_config_target_arch: ${{ matrix.arch }}
2024-07-30 11:17:41 +08:00
run: pnpm build:mac --${{ matrix.arch }}
- name: Upload Artifacts
2024-08-07 15:25:31 +08:00
if: startsWith(github.ref, 'refs/heads/')
2024-07-30 11:17:41 +08:00
uses: actions/upload-artifact@v4
with:
name: MacOS ${{ matrix.arch }}
path: dist/*.dmg
if-no-files-found: error
2024-08-05 21:08:58 +08:00
- name: Publish Release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
with:
2024-08-05 22:45:29 +08:00
files: dist/*.dmg
2024-08-15 15:53:58 +08:00
body_path: changelog.md
2024-08-05 21:08:58 +08:00
token: ${{ secrets.GITHUB_TOKEN }}
2024-08-07 14:00:14 +08:00
2024-08-07 15:08:41 +08:00
aur-release-updater:
2024-08-07 14:00:14 +08:00
strategy:
fail-fast: false
matrix:
pkgname:
2024-08-08 10:28:20 +08:00
- mihomo-party-electron-bin
2024-08-08 10:09:38 +08:00
- mihomo-party-electron
2024-08-07 14:00:14 +08:00
- mihomo-party-bin
- mihomo-party
if: startsWith(github.ref, 'refs/tags/v')
needs: linux
runs-on: ubuntu-latest
steps:
2024-08-07 15:08:41 +08:00
- name: Checkout
uses: actions/checkout@v4
2024-08-07 14:00:14 +08:00
- name: Update Version
run: |
2024-08-08 10:28:20 +08:00
sed -i "s/pkgver=.*/pkgver=$(echo ${{ github.ref }} | tr -d 'refs/tags/v')/" aur/${{ matrix.pkgname }}/PKGBUILD
2024-08-07 14:00:14 +08:00
- name: Update Checksums
2024-08-08 10:09:38 +08:00
if: matrix.pkgname == 'mihomo-party' || matrix.pkgname == 'mihomo-party-electron'
2024-08-07 14:00:14 +08:00
run: |
wget https://github.com/pompurin404/mihomo-party/archive/refs/tags/$(echo ${{ github.ref }} | tr -d 'refs/tags/').tar.gz -O release.tar.gz
2024-08-16 21:02:22 +08:00
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
2024-08-07 14:00:14 +08:00
- name: Update Checksums
2024-08-08 10:28:20 +08:00
if: matrix.pkgname == 'mihomo-party-bin' || matrix.pkgname == 'mihomo-party-electron-bin'
2024-08-07 14:00:14 +08:00
run: |
2024-08-07 15:24:36 +08:00
wget https://github.com/pompurin404/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/pompurin404/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
2024-08-07 14:00:14 +08:00
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
2024-08-08 10:28:20 +08:00
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
2024-08-07 14:00:14 +08:00
- 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
2024-08-07 15:08:41 +08:00
aur-git-updater:
2024-08-07 15:25:31 +08:00
if: startsWith(github.ref, 'refs/heads/')
2024-08-07 15:08:41 +08:00
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