Skip to content

Commit ea5f2a4

Browse files
committed
Fix relay list in workflow
1 parent 0c3b26e commit ea5f2a4

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/android-app.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
uses: actions/cache@v4
115115
id: cache-relay-list
116116
with:
117-
path: build/relays.json
117+
path: android/app/build/extraAssets/relays.json
118118
key: relay-list-${{ steps.get-date.outputs.date }}
119119

120120
- name: Checkout repository
@@ -128,14 +128,14 @@ jobs:
128128
env:
129129
RUSTFLAGS: --deny warnings
130130
run: |
131-
mkdir -p build
132-
cargo run --bin relay_list > build/relays.json
131+
mkdir -p android/app/build/extraAssets
132+
cargo run --bin relay_list > android/app/build/extraAssets/relays.json
133133
134134
- name: Upload
135135
uses: actions/upload-artifact@v4
136136
with:
137137
name: relay-list
138-
path: build/relays.json
138+
path: android/app/build/extraAssets/relays.json
139139
if-no-files-found: error
140140
retention-days: 7
141141

@@ -313,7 +313,6 @@ jobs:
313313
- uses: actions/download-artifact@v4
314314
with:
315315
name: relay-list
316-
path: build
317316

318317
- name: Build app
319318
uses: burrunan/gradle-cache-action@v1

0 commit comments

Comments
 (0)