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 087bc1a commit 3933b99Copy full SHA for 3933b99
.github/workflows/publishable.yml
@@ -7,19 +7,20 @@ on:
7
pull_request:
8
branches:
9
- main
10
+ paths:
11
+ - "**.md"
12
+ - "**.yaml"
13
+ - "**.yml"
14
15
jobs:
- dry_run:
- name: Dry run publish on ${{ matrix.os }}
- runs-on: ${{ matrix.os }}
- strategy:
16
- matrix:
17
- os: [ubuntu-latest]
+ publish-dry-run:
+ name: Publish dry-run with packages
18
+ runs-on: ubuntu-latest
19
steps:
20
- uses: actions/checkout@v3
- - name: Dart and Flutter Package Publisher
21
- uses: k-paxian/dart-package-publisher@master
+ - uses: k-paxian/dart-package-publisher@master
22
with:
23
- credentialJson: ${{ secrets.CREDENTIAL_JSON }}
+ credentialJson: 'MockCredentialJson'
24
flutter: true
25
dryRunOnly: true
26
+ skipTests: true
0 commit comments