set version to 1.1.2 #17
Workflow file for this run
This file contains 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/[email protected] | |
- 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/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: unittests | |
file: ./coverage/lcov.info | |
name: codecov-mdmoney | |
- name: 'Dry Run Publishing' | |
run: dart pub publish --dry-run | |
- name: 'Publish Artifact' | |
run: dart pub publish --force |