TetraStats/.github/workflows/main.yml

65 lines
2.0 KiB
YAML
Raw Normal View History

on:
pull_request:
branches:
- main
- master
push:
branches:
- main
- master
- develop
name: "Build & Release"
jobs:
2023-07-11 21:36:28 +00:00
build-and-release-windows:
name: Build Windows App
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
flutter-version: '3.10.5'
- name: Install project dependencies
run: flutter pub get
- name: Build artifacts
run: flutter build windows --release
- name: Archive Release
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: TetraStats-${{github.ref_name}}-windows.zip
directory: build/windows/runner/Release
- name: Push to Releases
uses: ncipollo/release-action@v1
with:
prerelease: true
2023-07-11 22:12:05 +00:00
allowUpdates: true
discussionCategory: autobuilded-releases
artifacts: "build/windows/runner/Release/TetraStats-${{github.ref_name}}-windows.zip"
2023-07-11 22:03:10 +00:00
tag: Auto-${{ github.run_number }}
body: This build was builded with GitHub Action workflow
token: ${{ secrets.TOKEN }}
2023-07-11 21:36:28 +00:00
build-and-release-android:
name: Build Android App
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '3.10.5'
- run: flutter pub get
# - run: flutter test // lmao. Tests? Who needs it?
- run: flutter build apk --split-per-abi
- name: Push to Releases
uses: ncipollo/release-action@v1
with:
prerelease: true
2023-07-11 22:12:05 +00:00
allowUpdates: true
discussionCategory: autobuilded-releases
2023-07-12 15:14:25 +00:00
artifacts: "build/app/outputs/apk/flutter-apk/*"
2023-07-11 22:03:10 +00:00
tag: Auto-${{ github.run_number }}
body: This build was builded with GitHub Action workflow
token: ${{ secrets.TOKEN }}