publishable.yml 492 B

123456789101112131415161718192021222324252627
  1. name: Publishable
  2. on:
  3. push:
  4. branches:
  5. - main
  6. pull_request:
  7. branches:
  8. - main
  9. paths:
  10. - "**.md"
  11. - "**.yaml"
  12. - "**.yml"
  13. jobs:
  14. publish-dry-run:
  15. name: Publish dry-run with packages
  16. runs-on: ubuntu-latest
  17. steps:
  18. - uses: actions/checkout@v3
  19. - uses: k-paxian/dart-package-publisher@master
  20. with:
  21. credentialJson: 'MockCredentialJson'
  22. flutter: true
  23. dryRunOnly: true
  24. skipTests: true