Skip to content

Improve UX (#179)

Improve UX (#179) #41

name: Build Desktop Apps
on:
push:
tags:
- "v*"
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "20.16.0"
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Tweak pnpm.cjs
run: sed -i 's/\/usr\/bin\/env node/node/g' /c/Users/runneradmin/setup-pnpm/node_modules/.pnpm/[email protected]/node_modules/pnpm/bin/pnpm.cjs
shell: bash
- name: Download and extract libsimple
run: |
curl -L https://github.com/wangfenjin/simple/releases/latest/download/libsimple-windows-x64.zip -o libsimple.zip
Expand-Archive libsimple.zip -DestinationPath . -Force
$libsimple_dir = Get-ChildItem -Directory | Where-Object { $_.Name -like "libsimple*" } | Select-Object -First 1
if ($libsimple_dir) {
Move-Item $libsimple_dir.FullName dist-simple
} else {
New-Item -ItemType Directory -Name dist-simple
Move-Item libsimple* dist-simple/
}
Rename-Item -Path "dist-simple/simple.dll" -NewName "libsimple.dll"
Get-ChildItem -Recurse dist-simple
shell: pwsh
- name: Install dependencies
run: pnpm install
- name: Build application
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: pnpm run build:desktop
- name: Build without Signing
run: pnpm run pkg:desktop
- name: List dist-app contents
run: Get-ChildItem -Path dist-app -Force
- name: Update Release (Windows)
uses: softprops/action-gh-release@v2
with:
files: |
dist-app/*.exe
dist-app/*.zip
dist-app/latest*.yml
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
build-macos:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "20.16.0"
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Download and extract libsimple
run: |
curl -L https://github.com/wangfenjin/simple/releases/latest/download/libsimple-osx-x64.zip -o libsimple.zip
unzip libsimple.zip
libsimple_dir=$(ls -d libsimple* | head -n 1)
if [ -d "$libsimple_dir" ]; then
mv "$libsimple_dir" dist-simple
else
mkdir dist-simple
mv libsimple* dist-simple/
fi
ls -R dist-simple
shell: bash
- name: Install dependencies
run: pnpm install
- name: Import Code-Signing Certificates
uses: Apple-Actions/import-codesign-certs@v1
with:
p12-file-base64: ${{ secrets.MACOS_CERTIFICATE }}
p12-password: ${{ secrets.MACOS_CERTIFICATE_PWD }}
- name: Build application
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: pnpm run build:desktop
- name: Build and Sign
env:
APPLEID: ${{ secrets.APPLE_ID }}
APPLEIDPASS: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
APPLETEAMID: ${{ secrets.APPLE_TEAM_ID }}
CSC_LINK: ${{ secrets.MACOS_CERTIFICATE }}
CSC_KEY_PASSWORD: ${{ secrets.MACOS_CERTIFICATE_PWD }}
run: pnpm run pkg:desktop
- name: List dist-app contents
run: ls -la dist-app
- name: Update Release (macOS)
uses: softprops/action-gh-release@v2
with:
files: |
dist-app/*.dmg
dist-app/*.zip
dist-app/latest*.yml
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
# build-linux:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v3
# - name: Setup Node.js
# uses: actions/setup-node@v3
# with:
# node-version: "20.16.0"
# - name: Install pnpm
# uses: pnpm/action-setup@v2
# with:
# version: 8
# - name: Download and extract libsimple
# run: |
# curl -L https://github.com/wangfenjin/simple/releases/latest/download/libsimple-linux-ubuntu-latest.zip -o libsimple.zip
# unzip libsimple.zip
# libsimple_dir=$(ls -d libsimple* | head -n 1)
# if [ -d "$libsimple_dir" ]; then
# mv "$libsimple_dir" dist-simple
# else
# mkdir dist-simple
# mv libsimple* dist-simple/
# fi
# ls -R dist-simple
# shell: bash
# - name: Install dependencies
# run: pnpm install
# - name: Build application
# env:
# NODE_OPTIONS: "--max_old_space_size=4096"
# run: pnpm run build:desktop
# - name: Build AppImage
# run: pnpm run pkg:desktop
# - name: List dist-app contents
# run: ls -la dist-app
# - name: Update Release (Linux)
# uses: softprops/action-gh-release@v2
# with:
# files: |
# dist-app/*.AppImage
# dist-app/*.zip
# dist-app/latest*.yml
# env:
# GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}