-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (59 loc) · 1.74 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: "Build & Release"
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Build & Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
repository: fskhri/jeketi-v2
token: ${{ secrets.TOKEN }}
- name: Cache Flutter Packages
uses: actions/cache@v3
with:
path: |
~/.pub-cache
.packages
.flutter-plugins
.flutter-plugins-dependencies
key: ${{ runner.os }}-flutter-${{ hashFiles('pubspec.yaml') }}
- name: Set Up Java
uses: actions/setup-java@v3.12.0
with:
distribution: 'adopt'
java-version: '17'
- name: Set Up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.2'
channel: 'stable'
- name: Install Dependencies
run: flutter pub get
- name: Build APK
run: flutter build apk --release
- name: Extract version from pubspec.yaml
id: extract_version
run: |
version=$(grep '^version: ' pubspec.yaml | cut -d ' ' -f 2 | tr -d '\r')
echo "VERSION=$version" >> $GITHUB_ENV
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/flutter-apk/app-release.apk"
tag: v${{ env.VERSION }}
token: ${{ secrets.KOCAK }}
name: "Release v${{ env.VERSION }}"
body: "Rilis otomatis dari GitHub Actions"
- name: Checkout jeketi-app Repository
uses: actions/checkout@v3
with:
repository: fskhri/jeketi-app
token: ${{ secrets.TOKEN }}