Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

flutter build apk github actions

name: Flutter CI

on:
  push:
    branches:
      - master

jobs:
  build:
    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:
          channel: 'beta'
      - run: flutter pub get
      - run: flutter format --set-exit-if-changed .
      - run: flutter analyze .
      - run: flutter build apk
      - uses: actions/upload-artifact@v1
        with:
          name: release-apk
          path: build/app/outputs/apk/release/app-release.apk
Comment

PREVIOUS NEXT
Code Example
Shell :: git command 
Shell :: linux print directory tree 
Shell :: delete last pushed commit 
Shell :: redis mac 
Shell :: Command to find os version of Webserver in nmap 
Shell :: heroku push alternative branch 
Shell :: execution policy powershell single script 
Shell :: shellpish 
Shell :: install node in nvm 
Shell :: batch call another batch with parameters 
Shell :: create github repo with curl 
Shell :: ubuntu change /etc/resolv.conf 
Shell :: gnome-sushi version 
Shell :: untar ubuntu 
Shell :: The current application is not compatible with NativeScript CLI 8.0.2 
Shell :: linux guzzlehttp/psr7 
Shell :: add folder to github 
Shell :: Realtek RTL8812BU Network WiFi Adapter kali linux driver 
Shell :: download heroku ubuntu 
Shell :: ubuntu turn off screen terminal 
Shell :: find files linux newer than 
Shell :: randomstring npm 
Shell :: allow port on ufw 
Shell :: Minercraft set night command 
Shell :: install rust cargo 
Shell :: linux edit file 
Shell :: Make an existing Git branch track a remote branch 
Shell :: kazam recorder ubuntu 
Shell :: keytool check for keys in keystore 
Shell :: linux run .sh in terminal 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =