set version to 1.0.7 #11
Workflow file for this run
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: build | |
| on: | |
| push: | |
| tags: | |
| - '[0-9]+.[0-9]+.[0-9]+' | |
| jobs: | |
| publish: | |
| environment: ${{ inputs.environment }} | |
| permissions: | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Checkout' | |
| uses: actions/checkout@v4 | |
| - name: 'Setup Dart' | |
| uses: dart-lang/setup-dart@v1.6.0 | |
| - name: 'Get Packages' | |
| run: dart pub get | |
| - name: Activate coverage package | |
| run: dart pub global activate coverage | |
| - name: Collect coverage in json | |
| run: mkdir coverage & dart run test --coverage=./coverage | |
| - name: Convert coverage to lcov | |
| run: dart pub global run coverage:format_coverage --report-on=lib --report-on=example --report-on=bin -l -o ./coverage/lcov.info -i ./coverage | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v1.0.5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| flags: unittests | |
| file: ./coverage/lcov.info | |
| name: codecov-mdamount | |
| - name: 'Dry Run Publishing' | |
| run: dart pub publish --dry-run | |
| - name: 'Publish Artifact' | |
| run: dart pub publish --force |