Skip to content

bumped to version 3.0.1 #4

bumped to version 3.0.1

bumped to version 3.0.1 #4

Workflow file for this run

name: Publish to GitHub Pages
on:
push:
branches: [master]
jobs:
check_up_to_date:
name: Checkout Repository
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history so we can compare
- name: Fetch all branches
run: git fetch origin
- name: Check if branch is up-to-date with master
run: |
# Compare the current branch with the master branch
if git merge-base --is-ancestor origin/master HEAD; then
echo "The current branch is up-to-date with master."
else
echo "The current branch is not up-to-date with master."
exit 1
fi
setup_and_deploy:
name: Setup Flutter and Deploy to GitHub Pages
runs-on: ubuntu-latest
needs: check_up_to_date
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install Flutter SDK
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.24.x
- name: Check Flutter Version
run: flutter --version
- name: Get Flutter Dependencies
run: flutter pub get
- name: Run Flutter Analyzer (Lint)
run: flutter analyze
- name: Deploy to GitHub Pages
uses: bluefireteam/flutter-gh-pages@v8
with:
workingDir: example
baseHref: /flutter_carousel_widget/