mirror of
https://github.com/LCE-Hub/LCE-Emerald-Launcher.git
synced 2026-07-21 01:37:24 +00:00
115 lines
3.7 KiB
YAML
115 lines
3.7 KiB
YAML
name: 'publish'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish-tauri:
|
|
permissions:
|
|
contents: write
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- platform: 'macos-latest'
|
|
args: '--target aarch64-apple-darwin'
|
|
- platform: 'macos-latest'
|
|
args: '--target x86_64-apple-darwin'
|
|
# - platform: 'ubuntu-22.04'
|
|
# args: ''
|
|
# - platform: 'windows-latest'
|
|
# args: ''
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: install dependencies (ubuntu only)
|
|
if: matrix.platform == 'ubuntu-22.04'
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
|
|
|
|
- name: setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 10
|
|
- name: setup node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: lts/*
|
|
cache: 'pnpm'
|
|
|
|
- name: install Rust stable
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
|
|
|
|
- name: Rust cache
|
|
uses: swatinem/rust-cache@v2
|
|
with:
|
|
workspaces: './src-tauri -> target'
|
|
|
|
- name: install frontend dependencies
|
|
run: pnpm install
|
|
- name: Create PKG with post-install script
|
|
if: matrix.platform == 'macos-latest'
|
|
run: |
|
|
# Create temporary directory for PKG creation
|
|
mkdir -p pkg_temp/scripts
|
|
cp scripts/postinstall.sh pkg_temp/scripts/
|
|
|
|
# Build the app first
|
|
pnpm tauri build -- ${{ matrix.args }}
|
|
|
|
# Find the built app
|
|
APP_PATH=$(find src-tauri/target/release/bundle/macos/ -name "*.app" | head -1)
|
|
APP_NAME=$(basename "$APP_PATH")
|
|
|
|
# Create PKG with post-install script
|
|
pkgbuild --root "$APP_PATH/.." \
|
|
--install-location /Applications \
|
|
--scripts pkg_temp/scripts \
|
|
--identifier "com.emerald.legacy" \
|
|
--version "1.0.0" \
|
|
--install-location "/Applications" \
|
|
--root "$APP_PATH" \
|
|
"Emerald-Legacy-Launcher.pkg"
|
|
|
|
# Move PKG to bundle directory
|
|
mkdir -p src-tauri/target/release/bundle/macos/
|
|
mv "Emerald-Legacy-Launcher.pkg" src-tauri/target/release/bundle/macos/
|
|
- uses: tauri-apps/tauri-action@v0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tagName: v__VERSION__
|
|
releaseName: 'Emerald v__VERSION__'
|
|
releaseBody: '*pls edit me*'
|
|
releaseDraft: true
|
|
prerelease: false
|
|
args: ${{ matrix.args }}
|
|
|
|
publish-flatpak:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
needs: publish-tauri # Wait for Tauri release to be created
|
|
container:
|
|
image: bilelmoussaoui/flatpak-github-actions:freedesktop-23.08
|
|
options: --privileged
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
|
with:
|
|
bundle: io.github.Emerald_Legacy_Launcher.Emerald_Legacy_Launcher.flatpak
|
|
manifest-path: flatpak/io.github.Emerald_Legacy_Launcher.Emerald_Legacy_Launcher.yml
|
|
cache-key: flatpak-builder-${{ github.sha }}
|
|
- uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: io.github.Emerald_Legacy_Launcher.Emerald_Legacy_Launcher.flatpak
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|