feat: version 1.0.7 #45
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@v4 | |
- 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@v4 | |
- 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: upload LaLa Build | |
uses: actions/upload-artifact@v3 | |
with: | |
name: LaLa_build | |
path: build | |
- 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 | |
build_flatpak: | |
needs: build_linux | |
runs-on: ubuntu-latest | |
container: | |
image: bilelmoussaoui/flatpak-github-actions:freedesktop-23.08 | |
options: --privileged | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@master | |
with: | |
name: LaLa_build | |
path: build | |
- name: Build Flatpak | |
uses: flatpak/flatpak-github-actions/flatpak-builder@v6 | |
with: | |
bundle: LaLa_linux_amd64.flatpak | |
manifest-path: dist/com.aironheart.lala.yml | |
cache-key: flatpak-builder-${{ github.sha }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: LaLa_amd64_flatpak | |
path: LaLa_linux_amd64.flatpak | |
- name: Upload linux flatpak | |
uses: svenstaro/upload-release-action@v2 | |
if: startsWith(github.ref, 'refs/tags/v') | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: LaLa_linux_amd64.flatpak | |
asset_name: LaLa_linux_amd64.flatpak | |
tag: ${{ github.ref }} | |
overwrite: true |