mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-05 18:20:39 -08:00
298 lines
8.9 KiB
YAML
298 lines
8.9 KiB
YAML
name: Release App
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*.*.*'
|
|
paths-ignore:
|
|
- 'README.md'
|
|
- 'docs/**'
|
|
- '.vscode'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- 'README.md'
|
|
- '.vscode'
|
|
|
|
concurrency:
|
|
group: release-ci-group
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
Linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: lts/*
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 'latest'
|
|
run_install: false
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
**/node_modules
|
|
~/.pnpm-store
|
|
~/.npm
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
${{ runner.os }}-node-
|
|
|
|
# only run codeql on Linux
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v2
|
|
with:
|
|
languages: javascript
|
|
|
|
- name: Install dependencies (x64)
|
|
run: pnpm install && pnpm remove registry-js
|
|
env:
|
|
# for dugute, see node_modules/.pnpm/dugite@2.7.1/node_modules/dugite/script/config.js
|
|
npm_config_arch: x64
|
|
- name: Make Linux (x64)
|
|
run: pnpm run make:linux-x64
|
|
env:
|
|
CI: true
|
|
CI_PULL_REQUEST: ${{ github.event_name == 'pull_request' }}
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Install dependencies (arm64)
|
|
run: pnpm install dugite --force
|
|
env:
|
|
npm_config_arch: arm64
|
|
- name: Make Linux (arm64)
|
|
run: pnpm run make:linux-arm
|
|
env:
|
|
CI: true
|
|
CI_PULL_REQUEST: ${{ github.event_name == 'pull_request' }}
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v2
|
|
|
|
- name: Create Release
|
|
uses: softprops/action-gh-release@v1
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
draft: true
|
|
generate_release_notes: true
|
|
files: out/make/**/*
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Get Renderer Bundle Stats
|
|
uses: vio/bundle-stats-action@v1
|
|
with:
|
|
id: renderer
|
|
webpack-stats-path: 'out/webpack-stats-renderer.json'
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Get Main Bundle Stats
|
|
uses: vio/bundle-stats-action@v1
|
|
with:
|
|
id: main
|
|
webpack-stats-path: 'out/webpack-stats-main.json'
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
MacOS:
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: lts/*
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 'latest'
|
|
run_install: false
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
**/node_modules
|
|
~/.pnpm-store
|
|
~/.npm
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
${{ runner.os }}-node-
|
|
|
|
- name: Install dependencies (x64)
|
|
run: pnpm install && pnpm remove registry-js
|
|
env:
|
|
npm_config_arch: x64
|
|
- name: Make macOS (x64)
|
|
run: pnpm run make:mac-x64
|
|
env:
|
|
APPLE_ID: ${{ secrets.APPLE_ID }}
|
|
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
|
|
CI: true
|
|
CI_PULL_REQUEST: ${{ github.event_name == 'pull_request' }}
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Install dependencies (arm64)
|
|
run: pnpm install dugite --force
|
|
env:
|
|
npm_config_arch: arm64
|
|
- name: Make macOS (arm64)
|
|
run: pnpm run make:mac-arm
|
|
env:
|
|
APPLE_ID: ${{ secrets.APPLE_ID }}
|
|
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
|
|
CI: true
|
|
CI_PULL_REQUEST: ${{ github.event_name == 'pull_request' }}
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Create Release
|
|
uses: softprops/action-gh-release@v1
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
draft: true
|
|
generate_release_notes: true
|
|
files: out/make/**/*
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Get Renderer Bundle Stats
|
|
uses: vio/bundle-stats-action@v1
|
|
with:
|
|
id: renderer
|
|
webpack-stats-path: 'out/webpack-stats-renderer.json'
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Get Main Bundle Stats
|
|
uses: vio/bundle-stats-action@v1
|
|
with:
|
|
id: main
|
|
webpack-stats-path: 'out/webpack-stats-main.json'
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
Windows:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: lts/*
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 'latest'
|
|
run_install: false
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
**/node_modules
|
|
~/.pnpm-store
|
|
~/.npm
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
${{ runner.os }}-node-
|
|
|
|
- name: Set up CV dependency for pngquant-bin
|
|
uses: ilammy/msvc-dev-cmd@v1
|
|
|
|
- name: Install dependencies (x64)
|
|
run: pnpm install
|
|
env:
|
|
npm_config_arch: x64
|
|
# - name: Add msi to path
|
|
# run: echo "${env:wix}bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
|
# Enable x32 if someone still need it
|
|
# - name: Make Windows (ia32)
|
|
# run: pnpm run make:win-ia32
|
|
# env:
|
|
# CSC_LINK: ${{ secrets.WIN_CERT }}
|
|
# CSC_KEY_PASSWORD: ${{ secrets.WIN_CERT_PASS }}
|
|
# CI: true
|
|
# CI_PULL_REQUEST: ${{ github.event_name == 'pull_request' }}
|
|
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
# - name: Rename (ia32)
|
|
# run: |
|
|
# Get-ChildItem out/make/wix/ia32
|
|
# Rename-Item -Path "out/make/wix/ia32/TidGi.msi" -NewName "Install-TidGi-Windows-ia32.msi"
|
|
- name: Make Windows (x64)
|
|
run: pnpm run make:win-x64
|
|
env:
|
|
CSC_LINK: ${{ secrets.WIN_CERT }}
|
|
CSC_KEY_PASSWORD: ${{ secrets.WIN_CERT_PASS }}
|
|
CI: true
|
|
CI_PULL_REQUEST: ${{ github.event_name == 'pull_request' }}
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
# - name: Rename (x64)
|
|
# run: |
|
|
# Get-ChildItem out/make/wix/x64
|
|
# Rename-Item -Path "out/make/wix/x64/TidGi.msi" -NewName "Install-TidGi-Windows-x64.msi"
|
|
- name: Install dependencies (arm64)
|
|
run: pnpm install dugite --force
|
|
env:
|
|
# based on TiddlyGit-Desktop/node_modules/.pnpm/dugite@2.7.1/node_modules/dugite/script/config.js
|
|
npm_config_arch: ia32
|
|
- name: Make Windows (arm64)
|
|
run: pnpm run make:win-arm
|
|
env:
|
|
CSC_LINK: ${{ secrets.WIN_CERT }}
|
|
CSC_KEY_PASSWORD: ${{ secrets.WIN_CERT_PASS }}
|
|
CI: true
|
|
CI_PULL_REQUEST: ${{ github.event_name == 'pull_request' }}
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
# - name: Rename (arm64)
|
|
# run: |
|
|
# Get-ChildItem out/make/wix/arm64
|
|
# Rename-Item -Path "out/make/wix/arm64/TidGi.msi" -NewName "Install-TidGi-Windows-arm64.msi"
|
|
|
|
- name: Create Release
|
|
uses: softprops/action-gh-release@v1
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
draft: true
|
|
generate_release_notes: true
|
|
# out/make/**/*.msi
|
|
files: |
|
|
out/make/**/*.exe
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Get Renderer Bundle Stats
|
|
uses: vio/bundle-stats-action@v1
|
|
with:
|
|
id: renderer
|
|
webpack-stats-path: 'out/webpack-stats-renderer.json'
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Get Main Bundle Stats
|
|
uses: vio/bundle-stats-action@v1
|
|
with:
|
|
id: main
|
|
webpack-stats-path: 'out/webpack-stats-main.json'
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|