File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313 types : [opened, reopened, synchronize]
1414
1515env :
16- FLUTTER_VERSION : ' 3.44.2 '
16+ FLUTTER_VERSION : ' 3.44.4 '
1717
1818jobs :
1919
@@ -104,7 +104,6 @@ jobs:
104104 uses : lycheeverse/lychee-action@v2
105105 with : # Don't fail for now but then create an issue - useful?
106106 args :
107- --exclude-file .lycheeignore
108107 --no-progress
109108 ' *.md'
110109 ' ./**/*.dart'
Original file line number Diff line number Diff line change 4848 MACOS_APP_RELEASE_UNSIGNED_PATH : build/macos/Build/Products/Release-unsigned
4949 MACOS_APP_RELEASE_STAGING_PATH : build/macos/Build/Products/Release-staging
5050 MACOS_APP_RELEASE_DEV_PATH : build/macos/Build/Products/Release-dev
51- FLUTTER_VERSION : " 3.44.2 "
51+ FLUTTER_VERSION : " 3.44.4 "
5252
5353jobs :
5454
Original file line number Diff line number Diff line change @@ -88,10 +88,8 @@ https://github.com/gjwgit/myapp/blob/main/README.md
8888https://server/POD_NAME/APP_NAME/data/FILE_PATH
8989https://host/
9090https://pods.au/me/app/data
91- https://github.com/anusii/notepod/blob/dev/CHANGELOG.md
92- https://anusii.github.io/notepod/
93- https://anusii.github.io/notepod/client-profile.jsonld
94- https://anusii.github.io/notepod/redirect.html
91+ https://github.com/anusii/
92+ https://anusii.github.io/
9593https://your-solid-server/
9694https://dev.empwr.au/mypod/
9795https://server/alice/
Original file line number Diff line number Diff line change @@ -35,29 +35,17 @@ mkdir tmp
3535
3636# Extract the zip file.
3737
38+ echo " Unzip ${claude} into ./tmp"
39+
3840(cd tmp; unzip " ${claude} " )
3941
4042# Run meld with the file and find result
4143
42- if [[ -d tmp/lib ]] && ! diff -rqw " lib" " tmp/lib" > /dev/null ; then
43- meld tmp/lib lib
44- fi
45-
46- if [[ -d tmp/assets ]] && ! diff -rqw " assets" " tmp/assets" > /dev/null ; then
47- meld tmp/assets assets
48- fi
49-
50- if [[ -d tmp/test ]] && ! diff -rqw " test" " tmp/test" > /dev/null ; then
51- meld tmp/test test
52- fi
53-
54- if [[ -d tmp/integration_test ]] && ! diff -rqw " integration_test" " tmp/integration_test" > /dev/null ; then
55- meld tmp/integration_test integration_test
56- fi
57-
58- if [[ -f tmp/README.md ]] && ! diff -qw " README.md" " tmp/README.md" > /dev/null ; then
59- meld tmp/README.md README.md
60- fi
44+ for f in lib assets test integration_test README.md CLAUDE.md; do
45+ if [[ -e tmp/$f ]] && ! diff -rqw " $f " " tmp/$f " > /dev/null ; then
46+ meld tmp/$f $f
47+ fi
48+ done
6149
6250# Check if pubspec included and if so compare if the difference is
6351# other than the version line.
You can’t perform that action at this time.
0 commit comments