github flutter build and release action.
|
10 months ago | |
---|---|---|
.dockerignore | 3 years ago | |
Dockerfile | 3 years ago | |
LICENSE | 10 months ago | |
README.md | 3 years ago | |
docker-compose.debug.yml | 3 years ago | |
docker-compose.yml | 3 years ago | |
entrypoint.sh | 3 years ago |
build flutter project with github action and relealse app .
name: flutter-action
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build Debug APK
run: ./gradlew assembleDebug
- name: Releasing using Hub
uses: ShaunLWM/action-release-debugapk@master
env:
GITHUB_TOKEN: ${{secrets.TOKEN}}
APP_FOLDER: app
RELEASE_TITLE: New Build