mirror of
https://github.com/lencx/ChatGPT.git
synced 2024-10-01 01:06:13 -04:00
92 lines
2.5 KiB
YAML
92 lines
2.5 KiB
YAML
name: Release CI
|
|
|
|
on:
|
|
push:
|
|
# Sequence of patterns matched against refs/tags
|
|
tags:
|
|
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
|
|
|
|
jobs:
|
|
create-release:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
RELEASE_UPLOAD_ID: ${{ steps.create_release.outputs.id }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Query version number
|
|
id: get_version
|
|
shell: bash
|
|
run: |
|
|
echo "using version tag ${GITHUB_REF:10}"
|
|
echo "version=${GITHUB_REF:10}" >> $GITHUB_ENV
|
|
|
|
- name: Create Release
|
|
id: create_release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: '${{ env.version }}'
|
|
release_name: 'ChatGPT ${{ env.version }}'
|
|
body: 'See the assets to download this version and install.'
|
|
|
|
build-tauri:
|
|
needs: create-release
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform: [macos-latest, ubuntu-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 18
|
|
|
|
- name: Install Rust stable
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
|
|
# Rust cache
|
|
- uses: Swatinem/rust-cache@v1
|
|
|
|
- name: install dependencies (ubuntu only)
|
|
if: matrix.platform == 'ubuntu-latest'
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
|
|
|
|
- name: Install app dependencies and build it
|
|
run: yarn && yarn build:fe
|
|
|
|
- uses: tauri-apps/tauri-action@v0.3
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
# 📝: https://tauri.app/v1/guides/distribution/updater#signing-updates
|
|
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
|
|
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
|
|
with:
|
|
releaseId: ${{ needs.create-release.outputs.RELEASE_UPLOAD_ID }}
|
|
|
|
updater:
|
|
runs-on: ubuntu-latest
|
|
needs: [create-release, build-tauri]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: yarn
|
|
- run: yarn updater --token=${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Deploy install.json
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# 📝: Edit the deployment directory
|
|
publish_dir: ./updater
|
|
force_orphan: true
|