fix(reusable_image_widget): Uses image_gallery_saver_plus instead dβ¦
#15
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: π Update CHANGELOG | |
| on: | |
| push: | |
| paths: | |
| - 'changelog/**.md' | |
| workflow_dispatch: | |
| jobs: | |
| update-changelog: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: π Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: π Setup Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: '3.32.3' | |
| channel: stable | |
| - name: π¦ Install dependencies | |
| run: flutter pub get | |
| - name: π Run Changelog Generator | |
| run: dart tool/generate_changelog.dart | |
| - name: π€ Commit and Push Changes | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add CHANGELOG.md | |
| git commit -m "π Auto-update CHANGELOG.md" | |
| git push | |
| continue-on-error: true |