2022-02-22 01:56:06 +08:00
|
|
|
name: Release CI
|
2022-01-16 14:27:41 +08:00
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_INCREMENTAL: 0
|
|
|
|
RUST_BACKTRACE: short
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
2022-01-16 14:30:49 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-03-19 10:50:44 +08:00
|
|
|
os: [windows-latest, ubuntu-latest, macos-latest]
|
2022-01-16 14:30:49 +08:00
|
|
|
runs-on: ${{ matrix.os }}
|
2022-01-16 14:27:41 +08:00
|
|
|
if: |
|
|
|
|
startsWith(github.repository, 'zzzgydi') &&
|
|
|
|
startsWith(github.ref, 'refs/tags/v')
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
profile: minimal
|
|
|
|
override: true
|
|
|
|
|
|
|
|
- name: Rust Cache
|
|
|
|
uses: Swatinem/rust-cache@ce325b60658c1b38465c06cc965b79baf32c1e72
|
|
|
|
|
|
|
|
- name: Install Node
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 14
|
|
|
|
|
2022-03-19 10:50:44 +08:00
|
|
|
- name: Install Dependencies (ubuntu only)
|
|
|
|
if: matrix.os == 'ubuntu-latest'
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
2022-05-11 12:39:41 +08:00
|
|
|
sudo apt-get install -y libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libappindicator3-dev librsvg2-dev libayatana-appindicator3-dev
|
2022-03-19 10:50:44 +08:00
|
|
|
|
2022-01-16 14:27:41 +08:00
|
|
|
- name: Get yarn cache dir path
|
|
|
|
id: yarn-cache-dir-path
|
|
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
|
|
|
|
|
|
- name: Yarn Cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
id: yarn-cache
|
|
|
|
with:
|
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-yarn-
|
|
|
|
|
|
|
|
- name: Yarn install and check
|
2022-01-21 03:08:40 +08:00
|
|
|
run: |
|
|
|
|
yarn install --network-timeout 1000000
|
|
|
|
yarn run check
|
2022-01-16 14:27:41 +08:00
|
|
|
|
|
|
|
- name: Tauri build
|
2022-03-13 00:58:49 +08:00
|
|
|
uses: tauri-apps/tauri-action@0e558392ccadcb49bcc89e7df15a400e8f0c954d
|
2022-01-16 16:03:53 +08:00
|
|
|
# enable cache even though failed
|
2022-05-11 12:39:41 +08:00
|
|
|
# continue-on-error: true
|
2022-01-16 14:27:41 +08:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-02-16 11:02:00 +08:00
|
|
|
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
|
|
|
|
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
|
2022-01-16 14:27:41 +08:00
|
|
|
with:
|
|
|
|
tagName: v__VERSION__
|
|
|
|
releaseName: "Clash Verge v__VERSION__"
|
2022-03-06 18:34:38 +08:00
|
|
|
releaseBody: "More new features are now supported."
|
2022-01-16 14:27:41 +08:00
|
|
|
releaseDraft: false
|
|
|
|
prerelease: true
|
2022-01-19 00:37:59 +08:00
|
|
|
|
2022-06-01 00:43:57 +08:00
|
|
|
- name: Portable Bundle
|
2022-03-19 10:50:44 +08:00
|
|
|
if: matrix.os == 'windows-latest'
|
2022-03-13 00:59:42 +08:00
|
|
|
run: |
|
2022-04-13 01:17:40 +08:00
|
|
|
yarn run portable
|
2022-03-15 00:00:20 +08:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-03-13 00:52:31 +08:00
|
|
|
|
2022-01-19 23:55:05 +08:00
|
|
|
release-update:
|
|
|
|
needs: release
|
2022-03-19 10:50:44 +08:00
|
|
|
runs-on: macos-latest
|
2022-01-19 23:55:05 +08:00
|
|
|
if: |
|
|
|
|
startsWith(github.repository, 'zzzgydi') &&
|
|
|
|
startsWith(github.ref, 'refs/tags/v')
|
2022-01-19 00:37:59 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Get yarn cache dir path
|
|
|
|
id: yarn-cache-dir-path
|
|
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
|
|
|
|
|
|
- name: Yarn Cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
id: yarn-cache
|
|
|
|
with:
|
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-yarn-
|
|
|
|
|
|
|
|
- name: Yarn install
|
2022-03-19 10:50:44 +08:00
|
|
|
run: yarn install
|
2022-01-19 00:37:59 +08:00
|
|
|
|
2022-04-05 23:19:54 +08:00
|
|
|
- name: Release updater file
|
|
|
|
run: yarn run updater
|
2022-01-19 00:37:59 +08:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|