-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (33 loc) · 989 Bytes
/
publisher.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
name: Flutter Publisher
on:
push:
branches: [main]
paths:
- .github/workflows/publisher.yml
- pubspec.yaml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Run Codegen
run: |
flutter packages get
dart run build_runner build --delete-conflicting-outputs -v
- name: Validate
env:
LIBQUICKJSC_TEST_PATH: ${{ github.workspace }}/test/assets/libquickjs_c_bridge_plugin.so
uses: peiffer-innovations/actions-flutter-validate@v2
with:
generate_code: true
- name: Publish
uses: peiffer-innovations/[email protected]
with:
credentials: ${{ secrets.CREDENTIAL_JSON }}
- uses: peiffer-innovations/actions-dart-version-autotag@v2
with:
token: ${{ secrets.REPO_TOKEN }}