Skip to content

Commit

Permalink
empty 01
Browse files Browse the repository at this point in the history
  • Loading branch information
KDvs123 committed Mar 31, 2024
1 parent 8aed3d8 commit 6a1294b
Showing 1 changed file with 33 additions and 8 deletions.
41 changes: 33 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,42 @@
name: CI test
name: Android Release

# 1
on:
# 2
push:
branches: [main]
branches: [ "master" ]
pull_request:
branches: [main]
branches: [ "master" ]

# 3
workflow_dispatch:

# 4
jobs:
start:
# 5
build:
# 6
runs-on: ubuntu-latest

# 7
steps:
- name: Checkout the code
uses: actions/checkout@v4.1.2
# 8
- uses: actions/checkout@v3
# 9
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: "17"
# 10
- uses: subosito/flutter-action@v2
with:
# 11
flutter-version: "3.19.4"
channel: 'stable'
# 12
- name: Get dependencies
run: flutter pub get

- name: Run sample script
uses: echo Hello, world
# Runs a set of commands using the runners shell
- name: Start release build
run: flutter build appbundle

0 comments on commit 6a1294b

Please sign in to comment.