Files
PicList/.github/workflows/test-build.yml
2025-08-12 16:15:12 +08:00

125 lines
3.6 KiB
YAML

# test-build.yml
# Workflow's name
name: Test Build
# Workflow's trigger
on:
workflow_dispatch:
env:
ELECTRON_OUTPUT_PATH: ./dist_electron
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
jobs:
test-build:
name: Test Build for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
steps:
- name: Set up git config
run: |
git config --global core.autocrlf false
- name: Check out git repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Install system deps
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-utils
- name: Install dependencies (macOS)
if: matrix.os == 'macos-13'
run: |
yarn config set ignore-engines true
yarn install
npm rebuild --platform=darwin --arch=arm64 sharp
- name: Install dependencies (Windows)
if: matrix.os == 'windows-latest'
run: |
yarn config set ignore-engines true
yarn install
- name: Install dependencies (Linux)
if: matrix.os == 'ubuntu-latest'
run: |
yarn config set ignore-engines true
yarn install
- name: Build application (Windows)
if: matrix.os == 'windows-latest'
run: yarn build:win
env:
ELECTRON_SKIP_NOTARIZATION: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Build application (macOS)
if: matrix.os == 'macos-13'
run: yarn build:mac
env:
ELECTRON_SKIP_NOTARIZATION: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Build application (Linux)
if: matrix.os == 'ubuntu-latest'
run: yarn build:linux
env:
ELECTRON_SKIP_NOTARIZATION: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Upload Windows executables with original names
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v4
with:
name: windows-executables
path: |
dist_electron/PicList-Setup-*.exe
dist_electron/*.exe.blockmap
retention-days: 30
if-no-files-found: error
- name: Upload macOS packages with original names
if: matrix.os == 'macos-13'
uses: actions/upload-artifact@v4
with:
name: macos-packages
path: |
dist_electron/PicList-*.dmg
dist_electron/PicList-*.zip
dist_electron/*.dmg.blockmap
dist_electron/*.zip.blockmap
retention-days: 30
if-no-files-found: error
- name: Upload Linux packages with original names
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4
with:
name: linux-packages
path: |
dist_electron/PicList-*.AppImage
dist_electron/PicList-*.snap
dist_electron/PicList-*.deb
dist_electron/PicList-*.rpm
dist_electron/PicList-*.tar.gz
retention-days: 30
if-no-files-found: ignore