set version to 0.10.0 #14
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/setup-dart@v1 | |
- name: 'Get Packages' | |
run: dart pub get | |
- name: 'Dry Run Publishing' | |
run: dart pub publish --dry-run | |
- name: 'Publish Artifact' | |
run: dart pub publish --force |