Skip to content

fix(reusable_image_widget): Uses image_gallery_saver_plus instead d… #15

fix(reusable_image_widget): Uses image_gallery_saver_plus instead d…

fix(reusable_image_widget): Uses image_gallery_saver_plus instead d… #15

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