Skip to content

Commit b7d0dc0

Browse files
authored
MOBILE-0000: Add dry-run workflow (#187)
1 parent 32ed656 commit b7d0dc0

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)