1
0
mirror of https://github.com/lencx/ChatGPT.git synced 2024-10-01 01:06:13 -04:00
Unofficial_ChatGPT_Client/.github/workflows/release.yml

90 lines
2.6 KiB
YAML
Raw Normal View History

2022-12-07 05:45:15 -05:00
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:
2022-12-27 12:25:28 -05:00
runs-on: ubuntu-20.04
2022-12-07 05:45:15 -05:00
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}"
2022-12-23 09:10:27 -05:00
echo "version=${GITHUB_REF:10}" >> $GITHUB_ENV
2022-12-07 05:45:15 -05:00
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
2022-12-23 09:10:27 -05:00
tag_name: '${{ env.version }}'
release_name: 'ChatGPT ${{ env.version }}'
2022-12-07 05:45:15 -05:00
body: 'See the assets to download this version and install.'
build-tauri:
needs: create-release
strategy:
fail-fast: false
matrix:
2022-12-27 12:25:28 -05:00
platform: [macos-latest, ubuntu-20.04, windows-latest]
2022-12-07 05:45:15 -05:00
runs-on: ${{ matrix.platform }}
steps:
2022-12-27 12:25:28 -05:00
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
2022-12-07 05:45:15 -05:00
with:
2022-12-27 12:25:28 -05:00
node-version: 16
2022-12-07 05:45:15 -05:00
2022-12-27 12:25:28 -05:00
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
2022-12-07 05:45:15 -05:00
- name: install dependencies (ubuntu only)
2022-12-27 12:25:28 -05:00
if: matrix.platform == 'ubuntu-20.04'
2022-12-07 05:45:15 -05:00
run: |
sudo apt-get update
2022-12-27 12:25:28 -05:00
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
2022-12-07 05:45:15 -05:00
- name: Install app dependencies and build it
2022-12-12 22:58:47 -05:00
run: yarn && yarn build:fe
2022-12-07 05:45:15 -05:00
2022-12-27 12:12:03 -05:00
- name: fix tray icon
if: matrix.platform != 'macos-latest'
run: |
yarn fix:tray
2022-12-07 05:45:15 -05:00
- 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:
2022-12-27 12:25:28 -05:00
runs-on: ubuntu-20.04
2022-12-07 05:45:15 -05:00
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