File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323
2424 - name : Build Askar
2525 run : ./build_askar_linux.sh
26- # Note: This workflow uses the latest stable version of the Flutter SDK.
27- # You can specify other versions if desired, see documentation here:
28- # https://github.com/flutter-actions/setup-flutter/blob/main/.github/workflows/flutter-linux.yml
26+
2927 - name : Setup Flutter SDK
3028 uses : flutter-actions/setup-flutter@v4
3129 with :
3533 - name : Install dependencies
3634 run : flutter pub get
3735
38- # Uncomment this step to verify the use of 'dart format' on each commit.
39- # - name: Verify formatting
40- # run: dart format --output=none --set-exit-if-changed .
41-
42- # Consider passing '--fatal-infos' for slightly stricter analysis.
4336 - name : Analyze project source
4437 run : flutter analyze --no-fatal-infos
4538
46- # Your project will need to have tests in test/ and a dependency on
47- # package:test for this step to succeed. Note that Flutter projects will
48- # want to change this to 'flutter test'.
4939 - name : Run tests
5040 run : flutter test
5141
5848 uses : actions/upload-artifact@v4
5949 with :
6050 name : dartdoc
61- path : doc/api
51+ path : docs
6252
6353 # Check for documentation changes
6454 - name : Check for documentation changes
7969 git config --global user.name 'github-actions[bot]'
8070 git config --global user.email 'github-actions[bot]@users.noreply.github.com'
8171 mkdir -p docs
82- rsync -av --delete doc/api / docs/
72+ rsync -av --delete docs / docs/
8373 touch docs/.nojekyll
8474 git add docs
8575 git commit -m "Deploy Dart documentation"
8676 git push origin main
87-
You can’t perform that action at this time.
0 commit comments