Skip to content

Commit 3933b99

Browse files
authored
👷 Improve publishable workflow
1 parent 087bc1a commit 3933b99

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/publishable.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,20 @@ on:
77
pull_request:
88
branches:
99
- main
10+
paths:
11+
- "**.md"
12+
- "**.yaml"
13+
- "**.yml"
1014

1115
jobs:
12-
dry_run:
13-
name: Dry run publish on ${{ matrix.os }}
14-
runs-on: ${{ matrix.os }}
15-
strategy:
16-
matrix:
17-
os: [ubuntu-latest]
16+
publish-dry-run:
17+
name: Publish dry-run with packages
18+
runs-on: ubuntu-latest
1819
steps:
1920
- uses: actions/checkout@v3
20-
- name: Dart and Flutter Package Publisher
21-
uses: k-paxian/dart-package-publisher@master
21+
- uses: k-paxian/dart-package-publisher@master
2222
with:
23-
credentialJson: ${{ secrets.CREDENTIAL_JSON }}
23+
credentialJson: 'MockCredentialJson'
2424
flutter: true
2525
dryRunOnly: true
26+
skipTests: true

0 commit comments

Comments
 (0)