. e bump version to 0.4.7 #8
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: Publish to pub.dev | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write # Assuming this is correct for your OIDC setup | |
steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v3 | |
# - name: Set up Dart SDK | |
# uses: dart-lang/[email protected] | |
# with: | |
# sdk: stable | |
- name: Custom Publish Steps | |
run: dart pub publish --force --dry-run | |
shell: bash | |
# Uncomment and modify the next lines if there are additional configurations | |
# - name: Additional Configuration | |
# run: | | |
# echo "Additional steps go here" |