github flutter build and release action.

git@h5.yoqi.me 5905544640 add license 10 months ago
.dockerignore c41a965e8f init 3 years ago
Dockerfile c41a965e8f init 3 years ago
LICENSE 5905544640 add license 10 months ago
README.md c41a965e8f init 3 years ago
docker-compose.debug.yml c41a965e8f init 3 years ago
docker-compose.yml c41a965e8f init 3 years ago
entrypoint.sh c41a965e8f init 3 years ago

README.md

flutter-action

build flutter project with github action and relealse app .

Usage

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