feat: support non-steam games & add set SteamPath function at setting… #38
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build LaLa | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build_windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- run: flutter --version | |
- run: flutter config --enable-windows-desktop | |
- run: flutter build windows | |
- name: Build Installer | |
run: | | |
"%programfiles(x86)%\Inno Setup 6\iscc.exe" ".\dist\windows_inno_setup.iss" | |
shell: cmd | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: LaLa_Setup | |
path: build\LaLa_Setup.exe | |
- name: Upload windows setup exe | |
uses: svenstaro/upload-release-action@v2 | |
if: startsWith(github.ref, 'refs/tags/v') | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: build/LaLa_Setup.exe | |
asset_name: LaLa_windows_setup.exe | |
tag: ${{ github.ref }} | |
overwrite: true | |
build_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- run: | | |
sudo apt-get update -y | |
sudo apt-get install -y ninja-build libgtk-3-dev | |
- run: flutter config --enable-linux-desktop | |
- run: flutter build linux --target-platform=linux-x64 | |
- name: Package Deb App | |
run: bash dist/linux_deb.sh | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: LaLa_amd64_deb | |
path: build/LaLa_amd64.deb | |
- name: upload linux deb | |
uses: svenstaro/upload-release-action@v2 | |
if: startsWith(github.ref, 'refs/tags/v') | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: build/LaLa_amd64.deb | |
asset_name: LaLa_linux_amd64.deb | |
tag: ${{ github.ref }} | |
overwrite: true | |
- name: Build AppImage using AppImage-Builder | |
uses: docker://appimagecrafters/appimage-builder:latest | |
with: | |
entrypoint: appimage-builder | |
args: --recipe dist/AppImageBuilder.yml --skip-test | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: LaLa_amd64_appImage | |
path: '*.AppImage' | |
- name: Upload linux AppImage | |
uses: svenstaro/upload-release-action@v2 | |
if: startsWith(github.ref, 'refs/tags/v') | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: LaLa Trainers Launcher-latest-x86_64.AppImage | |
asset_name: LaLa_linux_amd64.AppImage | |
tag: ${{ github.ref }} | |
overwrite: true |