2022-02-21 20:56:06 +03:00
|
|
|
name: Release CI
|
2022-01-16 09:27:41 +03:00
|
|
|
|
2022-11-02 20:15:50 +03:00
|
|
|
on:
|
2022-11-24 05:35:22 +03:00
|
|
|
workflow_dispatch:
|
2022-11-02 20:15:50 +03:00
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- v**
|
2022-01-16 09:27:41 +03:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_INCREMENTAL: 0
|
|
|
|
RUST_BACKTRACE: short
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
2022-01-16 09:30:49 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-08-28 09:44:09 +03:00
|
|
|
os: [windows-latest, ubuntu-latest, macos-latest]
|
2022-01-16 09:30:49 +03:00
|
|
|
runs-on: ${{ matrix.os }}
|
2022-11-24 05:41:03 +03:00
|
|
|
if: startsWith(github.repository, 'zzzgydi')
|
2022-01-16 09:27:41 +03:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-11-02 15:14:05 +03:00
|
|
|
uses: actions/checkout@v4
|
2022-01-16 09:27:41 +03:00
|
|
|
|
2023-08-12 10:41:26 +03:00
|
|
|
- name: install Rust stable
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
2022-01-16 09:27:41 +03:00
|
|
|
|
|
|
|
- name: Rust Cache
|
2022-11-20 18:17:05 +03:00
|
|
|
uses: Swatinem/rust-cache@v2
|
2022-05-31 19:47:04 +03:00
|
|
|
with:
|
2022-11-20 18:17:05 +03:00
|
|
|
workspaces: src-tauri
|
2022-01-16 09:27:41 +03:00
|
|
|
|
|
|
|
- name: Install Node
|
2023-11-02 15:14:05 +03:00
|
|
|
uses: actions/setup-node@v4
|
2022-01-16 09:27:41 +03:00
|
|
|
with:
|
2023-08-12 10:41:26 +03:00
|
|
|
node-version: "16"
|
|
|
|
cache: "yarn"
|
2022-01-16 09:27:41 +03:00
|
|
|
|
2022-03-19 05:50:44 +03:00
|
|
|
- name: Install Dependencies (ubuntu only)
|
2022-09-01 20:27:06 +03:00
|
|
|
if: startsWith(matrix.os, 'ubuntu-')
|
2022-03-19 05:50:44 +03:00
|
|
|
run: |
|
2023-01-22 08:31:34 +03:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf openssl
|
2022-03-19 05:50:44 +03:00
|
|
|
|
2022-01-16 09:27:41 +03:00
|
|
|
- name: Yarn install and check
|
2022-01-20 22:08:40 +03:00
|
|
|
run: |
|
2023-08-12 10:41:26 +03:00
|
|
|
yarn install --network-timeout 1000000 --frozen-lockfile
|
2022-01-20 22:08:40 +03:00
|
|
|
yarn run check
|
2022-01-16 09:27:41 +03:00
|
|
|
|
|
|
|
- name: Tauri build
|
2022-11-20 18:17:05 +03:00
|
|
|
uses: tauri-apps/tauri-action@v0
|
2022-01-16 11:03:53 +03:00
|
|
|
# enable cache even though failed
|
2022-05-11 07:39:41 +03:00
|
|
|
# continue-on-error: true
|
2022-01-16 09:27:41 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-02-16 06:02:00 +03:00
|
|
|
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
|
|
|
|
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
|
2022-01-16 09:27:41 +03:00
|
|
|
with:
|
|
|
|
tagName: v__VERSION__
|
|
|
|
releaseName: "Clash Verge v__VERSION__"
|
2022-03-06 13:34:38 +03:00
|
|
|
releaseBody: "More new features are now supported."
|
2022-01-16 09:27:41 +03:00
|
|
|
releaseDraft: false
|
|
|
|
prerelease: true
|
2022-01-18 19:37:59 +03:00
|
|
|
|
2022-05-31 19:43:57 +03:00
|
|
|
- name: Portable Bundle
|
2023-08-12 10:41:26 +03:00
|
|
|
if: startsWith(matrix.os, 'windows-')
|
2022-08-15 20:53:40 +03:00
|
|
|
# rebuild with env settings
|
2022-03-12 19:59:42 +03:00
|
|
|
run: |
|
2022-08-15 20:53:40 +03:00
|
|
|
yarn build
|
2022-04-12 20:17:40 +03:00
|
|
|
yarn run portable
|
2022-03-14 19:00:20 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-08-15 20:53:40 +03:00
|
|
|
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
|
|
|
|
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
|
|
|
|
VITE_WIN_PORTABLE: 1
|
2022-03-12 19:52:31 +03:00
|
|
|
|
2022-01-19 18:55:05 +03:00
|
|
|
release-update:
|
|
|
|
needs: release
|
2023-01-14 07:20:17 +03:00
|
|
|
runs-on: ubuntu-latest
|
2022-01-19 18:55:05 +03:00
|
|
|
if: |
|
|
|
|
startsWith(github.repository, 'zzzgydi') &&
|
|
|
|
startsWith(github.ref, 'refs/tags/v')
|
2022-01-18 19:37:59 +03:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-11-02 15:14:05 +03:00
|
|
|
uses: actions/checkout@v4
|
2022-01-18 19:37:59 +03:00
|
|
|
|
2023-08-12 10:41:26 +03:00
|
|
|
- name: Install Node
|
2023-11-02 15:14:05 +03:00
|
|
|
uses: actions/setup-node@v4
|
2022-01-18 19:37:59 +03:00
|
|
|
with:
|
2023-08-12 10:41:26 +03:00
|
|
|
node-version: "16"
|
|
|
|
cache: "yarn"
|
2022-01-18 19:37:59 +03:00
|
|
|
|
|
|
|
- name: Yarn install
|
2023-08-12 10:41:26 +03:00
|
|
|
run: yarn install --network-timeout 1000000 --frozen-lockfile
|
2022-01-18 19:37:59 +03:00
|
|
|
|
2022-04-05 18:19:54 +03:00
|
|
|
- name: Release updater file
|
|
|
|
run: yarn run updater
|
2022-01-18 19:37:59 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|