chore: update .gitignore to include IDE configuration #9
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: | |
branches: | |
- main | |
- stable | |
jobs: | |
prerelease: | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: subosito/flutter-action@v2 | |
- uses: bluefireteam/melos-action@v3 | |
with: | |
run-versioning-prerelease: true | |
tag: true | |
git-email: "[email protected]" | |
git-name: "GitHub Actions Bot" | |
create-pr: true | |
publish-dry-run: true | |
stable: | |
if: github.ref == 'refs/heads/stable' | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: subosito/flutter-action@v2 | |
- uses: bluefireteam/melos-action@v3 | |
with: | |
run-versioning: true | |
tag: true | |
git-email: "[email protected]" | |
git-name: "GitHub Actions Bot" | |
create-pr: true | |
publish-dry-run: true |