Skip to content

Commit 84b3026

Browse files
Merge pull request #181 from OpenDTU-App/fixes
2 parents 24bae5e + f224690 commit 84b3026

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

.github/workflows/pull-requests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,7 @@ jobs:
6262
with:
6363
name: opendtu-app
6464
if-no-files-found: error
65-
path: android/app/build/outputs/apk/release/*.apk
65+
path: |
66+
android/app/build/outputs/apk/release/*.apk
67+
android/app/build/generated/assets/react/release/index.android.bundle
6668

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ jobs:
8787
uses: actions/upload-artifact@v4
8888
with:
8989
name: opendtu-app
90-
path: android/app/build/outputs/apk/release/*.apk
90+
path: |
91+
android/app/build/outputs/apk/release/*.apk
92+
android/app/build/generated/assets/react/release/index.android.bundle
9193
if-no-files-found: error
9294

9395
# skip release creation if this is not a tag push
@@ -98,4 +100,6 @@ jobs:
98100
with:
99101
generate_release_notes: true
100102
prerelease: false
101-
files: android/app/build/outputs/apk/release/*-signed.apk
103+
files: |
104+
android/app/build/outputs/apk/release/*-signed.apk
105+
android/app/build/generated/assets/react/release/index.android.bundle

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "src/translations/translation-files"]
22
path = src/translations/translation-files
3-
url = [email protected]:OpenDTU-App/opendtu-react-native-translations.git
3+
url = ../../OpenDTU-App/opendtu-react-native-translations.git

.idea/i18nally.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/inverters/InverterList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const InverterList: FC = () => {
3030
},
3131
);
3232

33-
const sortedInverters = inverters?.sort((a, b) => a.order - b.order);
33+
const sortedInverters = inverters?.slice().sort((a, b) => a.order - b.order);
3434

3535
return (
3636
<ScrollView style={{ marginBottom: 16 }}>

0 commit comments

Comments
 (0)