Skip to content

Commit

Permalink
Merge branch 'release/v0.7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanM04 committed Jan 20, 2020
2 parents d06ae9a + 143fa9d commit 2c7008e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,19 @@ jobs:
with:
flutter-version: 1.12.13+hotfix.5
- run: flutter pub get
- run: flutter build apk --flavor prod
- run: flutter build apk --flavor prod --target-platform android-arm,android-arm64,android-x64 --split-per-abi
- name: Build generic
run: flutter build apk --flavor prod
- name: Build ABIs
run: flutter build apk --flavor prod --target-platform android-arm,android-arm64,android-x64 --split-per-abi
- name: Rename files
run: find build/app/outputs/apk/prod/release -name '*.apk' -exec bash -c ' mv $0 ${0/app-prod/animu}' {} \;
- name: Publish
uses: softprops/action-gh-release@v1
with:
files: |
build/app/outputs/apk/prod/release/app-prod-armeabi-v7a-release.apk
build/app/outputs/apk/prod/release/app-prod-arm64-v8a-release.apk
build/app/outputs/apk/prod/release/app-prod-x86_64-release.apk
build/app/outputs/apk/prod/release/app-prod-release.apk
build/app/outputs/apk/prod/release/animu-armeabi-v7a-release.apk
build/app/outputs/apk/prod/release/animu-arm64-v8a-release.apk
build/app/outputs/apk/prod/release/animu-x86_64-release.apk
build/app/outputs/apk/prod/release/animu-release.apk
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: Ver anime sin complicaciones.
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 0.6.0
version: 0.7.1

environment:
sdk: ">=2.6.0 <3.0.0"
Expand Down
4 changes: 2 additions & 2 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h1><a href="#">Animú</a></h1>
<ul class="actions">
<li>
<a
href="https://github.com/JuanM04/animu/releases/latest/download/app-prod-release.apk"
href="https://github.com/JuanM04/animu/releases/latest/download/animu-release.apk"
class="button primary icon solid fa-download"
>Descargar</a
>
Expand Down Expand Up @@ -161,7 +161,7 @@ <h2>¿Qué estás esperando?</h2>
<ul class="actions special">
<li>
<a
href="https://github.com/JuanM04/animu/releases/latest/download/app-prod-release.apk"
href="https://github.com/JuanM04/animu/releases/latest/download/animu-release.apk"
class="button primary icon solid fa-download"
>Descargar</a
>
Expand Down

0 comments on commit 2c7008e

Please sign in to comment.