feat: release version 0.6.1 with improvements to MP3 parsing and meta… #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish to Pub.dev | |
| on: | |
| push: | |
| branches: [beta, main] | |
| jobs: | |
| publishing: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v2 # required! | |
| - name: ">> Flutter package <<" | |
| uses: k-paxian/dart-package-publisher@master | |
| with: | |
| credentialJson: ${{ secrets.CREDENTIAL_JSON }} | |
| flutter: true | |
| skipTests: false |