small fix #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: | |
Build | |
# Controls what will trigger the workflow. | |
# Change it to your needs. | |
on: | |
# A new push to the "main" branch. | |
push: | |
branches: ["main"] | |
# A new pull request to the "main" branch. | |
pull_request: | |
branches: ["main"] | |
# Allows to trigger the workflow from GitHub interfaces. | |
workflow_dispatch: | |
# A single workflow can have multiple jobs. | |
jobs: | |
# 'A new job is defined with the name: "build_android" | |
build_windows: | |
# Defines what operating system will be used for the actions. | |
# For android, we will use Linux GitHub-Hosted Runner. | |
runs-on: ubuntu-22.04 | |
# Defines what step should be passed for successful run | |
steps: | |
# Checkout to the selected branch | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Download and install flutter packages | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
# Define which stable flutter version should be used | |
channel: "stable" | |
# Enables cache for flutter packages | |
# Speed up the process | |
cache: true | |
# Get Flutter project dependencies | |
- name: Update linux | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install clang cmake git ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev | |
- name: Get dependencies | |
run: flutter pub get | |
- name: get flutter_distributor | |
run: dart pub global activate flutter_distributor | |
# - name: Build release | |
# run: flutter_distributor release --name=release --jobs=release-linux-deb | |
- name: list directory | |
run: ls -a |