Merge branch 'master' of github.com:moritz-weber/mucke
This commit is contained in:
commit
a63bda07a9
2 changed files with 14 additions and 8 deletions
|
@ -16,18 +16,26 @@ jobs:
|
||||||
build:
|
build:
|
||||||
# The type of runner that the job will run on
|
# The type of runner that the job will run on
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: src
|
||||||
|
|
||||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||||
steps:
|
steps:
|
||||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-java@v2
|
||||||
- uses: actions/setup-java@v1
|
|
||||||
with:
|
with:
|
||||||
java-version: '12.x'
|
java-version: '12.x'
|
||||||
|
distribution: 'zulu'
|
||||||
|
|
||||||
- uses: subosito/flutter-action@v1
|
- uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
channel: 'stable'
|
flutter-version: '3.3.3'
|
||||||
- run: flutter pub get
|
- run: flutter pub get
|
||||||
- run: flutter build apk
|
- run: flutter build apk --flavor prod
|
||||||
|
- name: Github Release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
if: startsWith(github.ref, 'refs/tags')
|
||||||
|
with:
|
||||||
|
files: src/app/build/outputs/apk/release/app-prod-release.apk
|
|
@ -1,6 +1,4 @@
|
||||||
# mucke
|
# mucke
|
||||||
![Test](https://github.com/moritz-weber/mucke/workflows/Test/badge.svg)
|
|
||||||
[![Coverage](https://coveralls.io/repos/github/moritz-weber/mucke/badge.svg?branch=master)](https://coveralls.io/github/moritz-weber/mucke?branch=master)
|
|
||||||
![Build](https://github.com/moritz-weber/mucke/workflows/Build/badge.svg)
|
![Build](https://github.com/moritz-weber/mucke/workflows/Build/badge.svg)
|
||||||
|
|
||||||
A simple Android music player with extras.
|
A simple Android music player with extras.
|
||||||
|
|
Loading…
Add table
Reference in a new issue