Skip to content

Commit 18c1210

Browse files
committed
Modify: 'Github Actions Pipeline: Add SDK file containing flutter into .github/workflows to make github installing flutter and not dart SDK'
1 parent fb8d443 commit 18c1210

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.gg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"canCommit":{"success":{"hash":3848340859398}},"doCommit":{"success":{"hash":3848340859398}},"canPublish":{"success":{"hash":3849130317938}},"canPush":{"success":{"hash":3848340859398}},"doPush":{"success":{"hash":3848340859398}}}
1+
{"canCommit":{"success":{"hash":3848457254370}},"doCommit":{"success":{"hash":3848457254370}},"canPublish":{"success":{"hash":3849130317938}},"canPush":{"success":{"hash":3848457254370}},"doPush":{"success":{"hash":3848457254370}}}

.github/workflows/pipeline.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: Check for Flutter Project
3131
run: |
32-
if [ -f pubspec.yaml ] && grep -q "sdk: flutter" pubspec.yaml; then
32+
if ([ -f pubspec.yaml ] && grep -q "sdk: flutter" pubspec.yaml) || ([ -f .github/workflows/sdk ] && grep -q "flutter" .github/workflows/sdk); then
3333
echo "is_flutter=true" >> "$GITHUB_ENV"
3434
else
3535
echo "is_flutter=false" >> "$GITHUB_ENV"

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- Kidney: Auto check all repos
88
- Rework changelog
99
- 'Github Actions Pipeline'
10+
- 'Github Actions Pipeline: Add SDK file containing flutter into .github/workflows to make github installing flutter and not dart SDK'
1011

1112
## [1.0.1] - 2024-04-05
1213

0 commit comments

Comments
 (0)