chore: Bump version to 0.7.1+1 and update version check in workflow #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: CI/CD Workflow with Relaxed Linting | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.19.4' | |
- name: Get dependencies | |
run: | | |
cd app | |
flutter pub get | |
- name: Run Flutter Analyzer | |
run: | | |
cd app | |
flutter analyze | |
- name: Check Version Bump | |
run: | | |
cd app | |
PREV_VERSION=$(git show HEAD^:pubspec.yaml | grep '^version:' | awk '{print $2}') | |
CURR_VERSION=$(grep '^version:' pubspec.yaml | awk '{print $2}') | |
if [ "$PREV_VERSION" == "$CURR_VERSION" ]; then | |
echo "Version has not been bumped. Failing the workflow." | |
exit 1 | |
fi |