We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32ed656 commit b7d0dc0Copy full SHA for b7d0dc0
1 file changed
.github/workflows/publish-dry-run.yml
@@ -0,0 +1,33 @@
1
+name: SDK publish dry run
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ dry-run-publish:
8
+ runs-on: ubuntu-latest
9
+ name: ${{ matrix.package }} dry-run
10
+ strategy:
11
+ matrix:
12
+ package:
13
+ - mindbox_platform_interface
14
+ - mindbox_android
15
+ - mindbox_ios
16
+ - mindbox
17
+ fail-fast: false
18
19
+ steps:
20
+ - uses: actions/checkout@v4
21
22
+ - uses: subosito/flutter-action@v2
23
+ with:
24
+ channel: stable
25
26
+ - name: Dry run publish
27
+ uses: sakebook/actions-flutter-pub-publisher@v1.3.1
28
29
+ package_directory: ${{ matrix.package }}
30
+ credential: ${{ secrets.PUB_CREDENTIALS }}
31
+ flutter_package: true
32
+ skip_test: true
33
+ dry_run: true
0 commit comments