Skip to content

Commit

Permalink
🔧Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Cierra-Runis authored and singerdmx committed Feb 1, 2024
1 parent 7d7da73 commit 46bff74
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:

- name: Enable Local Dev
run: ./scripts/enable_local_dev.sh

- name: Install dependencies
run: flutter pub get

- name: Flutter build Web
run: flutter build web --release --verbose --dart-define=CI=true
working-directory: ./example
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,26 @@ jobs:
run: flutter pub get

- name: Install dart_quill_delta dependencies
run: flutter pub get -C dart_quill_delta
run: flutter pub get -C packages/dart_quill_delta

- name: Install flutter_quill_extensions dependencies
run: flutter pub get -C flutter_quill_extensions
run: flutter pub get -C packages/flutter_quill_extensions

- name: Install flutter_quill_test dependencies
run: flutter pub get -C flutter_quill_test
run: flutter pub get -C packages/flutter_quill_test

- name: Install quill_html_converter dependencies
run: flutter pub get -C quill_html_converter
run: flutter pub get -C packages/quill_html_converter

- name: Install quill_pdf_converter dependencies
run: flutter pub get -C quill_pdf_converter
run: flutter pub get -C packages/quill_pdf_converter

- name: Run flutter analysis
run: flutter analyze

- name: Check dart code formatting
run: dart format --set-exit-if-changed .

- name: Preview dart proposed changes
run: dart fix --dry-run

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
with:
channel: 'stable'
cache: true

- name: Check flutter version
run: flutter --version

- name: Enable Local Dev
run: ./scripts/enable_local_dev.sh

Expand All @@ -29,7 +29,7 @@ jobs:

# Here you can insert custom steps you need
# - run: dart tool/generate-code.dart

# This is needed in order for the authentication to success
# dart pub token add https://pub.dev --env-var PUB_TOKEN
# Requests to "https://pub.dev" will now be authenticated using the secret token stored in the environment variable "PUB_TOKEN".
Expand All @@ -40,7 +40,7 @@ jobs:

- name: Publish flutter_quill
run: flutter pub publish --force

- name: Publish dart_quill_delta
run: flutter pub publish --force
working-directory: ./dart_quill_delta/
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Publish quill_html_converter
run: flutter pub publish --force
working-directory: ./quill_html_converter/

- name: Publish quill_pdf_converter
run: flutter pub publish --force
working-directory: ./quill_pdf_converter/

0 comments on commit 46bff74

Please sign in to comment.