release #23
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: "release" | |
on: | |
push: | |
tags: | |
- "1.*" | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
jobs: | |
flutter-build-android: | |
name: "Release for android" | |
runs-on: "windows-latest" | |
permissions: write-all | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- run: | | |
$tag = "${{ github.ref }}".Replace('refs/tags/', '') | |
echo "tag=$(echo $tag)" >> $env:GITHUB_ENV | |
- run: echo "bilineo_android_${env:tag}.apk build progress" | |
- run: choco install yq | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
flutter-version-file: pubspec.yaml | |
cache-key: "flutter-:os:-:channel:-:version:-:arch:-:hash:" # optional, change this to force refresh cache | |
cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" # optional, change this to specify the cache path | |
pub-cache-key: "flutter-pub:os:-:channel:-:version:-:arch:-:hash:" # optional, change this to force refresh cache of dart pub get dependencies | |
pub-cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" # optional, change this to specify the cache path | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '18' | |
- run: flutter pub get | |
- run: flutter build apk --split-per-abi | |
- run: | | |
Ren build/app/outputs/flutter-apk/app-arm64-v8a-release.apk bilineo_android_${env:tag}.apk | |
- name: Upload android outputs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: android_outputs | |
path: | | |
build/app/outputs/flutter-apk/bilineo_android_*.apk | |
flutter-build-windows: | |
name: "Release for windows" | |
runs-on: "windows-latest" | |
permissions: write-all | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- run: | | |
$tag = "${{ github.ref }}".Replace('refs/tags/', '') | |
echo "tag=$(echo $tag)" >> $env:GITHUB_ENV | |
- run: echo "bilineo_windows_${env:tag}.zip build progress" | |
- run: choco install yq | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
flutter-version-file: pubspec.yaml | |
cache-key: "flutter-:os:-:channel:-:version:-:arch:-:hash:" # optional, change this to force refresh cache | |
cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" # optional, change this to specify the cache path | |
pub-cache-key: "flutter-pub:os:-:channel:-:version:-:arch:-:hash:" # optional, change this to force refresh cache of dart pub get dependencies | |
pub-cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" # optional, change this to specify the cache path | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '18' | |
- run: flutter pub get | |
- run: flutter build windows | |
- run: | | |
Compress-Archive build/windows/x64/runner/Release bilineo_windows_${env:tag}.zip | |
- name: Upload windows outputs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: windows_outputs | |
path: | | |
bilineo_windows_*.zip | |
flutter-build-linux: | |
name: "Release for Linux" | |
runs-on: "ubuntu-latest" | |
permissions: write-all | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Extract tag name | |
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | |
shell: bash | |
- name: Echo build progress | |
run: echo "bilineo_linux_${{ env.tag }}.tar.gz build progress" | |
shell: bash | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y clang cmake libgtk-3-dev ninja-build libayatana-appindicator3-dev mpv libmpv-dev libasound2-dev | |
shell: bash | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
flutter-version-file: pubspec.yaml | |
- name: Get Flutter dependencies | |
run: flutter pub get | |
shell: bash | |
- name: Build Flutter for Linux | |
run: flutter build linux | |
shell: bash | |
- name: Package linux build output | |
run: tar -zcvf bilineo_linux_${{ env.tag }}.tar.gz build/linux/x64/release/bundle/* | |
shell: bash | |
- name: Upload linux outputs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: linux_outputs | |
path: bilineo_linux_*.tar.gz | |
release: | |
name: "Release" | |
runs-on: "ubuntu-latest" | |
needs: [flutter-build-windows, flutter-build-android, flutter-build-linux] | |
permissions: write-all | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Extract tag name | |
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | |
shell: bash | |
- name: Download windows build file | |
uses: actions/download-artifact@v4 | |
with: | |
name: windows_outputs | |
path: windows_outputs | |
- name: List files in windows_outputs directory | |
run: ls -l windows_outputs | |
- name: Copy windows build file to root | |
run: cp windows_outputs/* bilineo_windows_${{ env.tag }}.zip | |
- name: Download linux build file | |
uses: actions/download-artifact@v4 | |
with: | |
name: linux_outputs | |
path: linux_outputs | |
- name: List files in linux_outputs directory | |
run: ls -l linux_outputs | |
- name: Copy linux build file to root | |
run: cp linux_outputs/* bilineo_linux_${{ env.tag }}.tar.gz | |
- name: Download android build file | |
uses: actions/download-artifact@v4 | |
with: | |
name: android_outputs | |
path: android_outputs | |
- name: List files in android_outputs directory | |
run: ls -l android_outputs | |
- name: Copy android build file to root | |
run: cp android_outputs/* bilineo_android_${{ env.tag }}.apk | |
- name: Create release | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: false | |
files: | | |
bilineo_android_*.apk | |
bilineo_windows_*.zip | |
bilineo_linux_*.tar.gz |