Skip to content

Commit 54fd00f

Browse files
committed
Merge branch 'linux_deb_and_rpm'
2 parents 48e1aa0 + d501922 commit 54fd00f

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -396,15 +396,13 @@ jobs:
396396
working-directory: frontend/appflowy_flutter
397397
run: |
398398
flutter_distributor release --name=dev --jobs=release-dev-linux-deb --skip-clean
399-
cd dist/${{ github.ref_name }}
400-
cp appflowy-${{ github.ref_name }}+${{ github.ref_name }}-linux.deb ${{ env.LINUX_PACKAGE_DEB_NAME }}
399+
cp -r dist/${{ github.ref_name }}/appflowy-${{ github.ref_name }}+${{ github.ref_name }}-linux.deb ${{ env.LINUX_APP_RELEASE_PATH }}/${{ env.LINUX_PACKAGE_DEB_NAME }}
401400
402401
- name: Build Linux package (.rpm)
403402
working-directory: frontend/appflowy_flutter
404403
run: |
405404
flutter_distributor release --name=dev --jobs=release-dev-linux-rpm --skip-clean
406-
cd dist/${{ github.ref_name }}
407-
cp appflowy-${{ github.ref_name }}+${{ github.ref_name }}-linux.rpm ${{ env.LINUX_PACKAGE_RPM_NAME }}
405+
cp -r dist/${{ github.ref_name }}/appflowy-${{ github.ref_name }}+${{ github.ref_name }}-linux.rpm ${{ env.LINUX_APP_RELEASE_PATH }}/${{ env.LINUX_PACKAGE_RPM_NAME }}
408406
409407
- name: Build Linux package (.AppImage)
410408
working-directory: frontend

frontend/appflowy_flutter/lib/startup/tasks/auto_update_task.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class AutoUpdateTask extends LaunchTask {
1616
AutoUpdateTask();
1717

1818
static const _feedUrl =
19-
'https://github.com/LucasXu0/AppFlowy/releases/latest/download/appcast-{os}-{arch}.xml';
19+
'https://github.com/AppFlowy-IO/AppFlowy/releases/latest/download/appcast-{os}-{arch}.xml';
2020
final _listener = _AppFlowyAutoUpdaterListener();
2121

2222
@override

frontend/appflowy_flutter/linux/packaging/rpm/make_config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ keywords:
1818
- Kanban
1919
- Note
2020

21-
generic_name: appflowy
21+
generic_name: AppFlowy
2222

2323
categories:
2424
- Office
@@ -30,4 +30,4 @@ supportedMimeType: x-scheme-handler/appflowy-flutter
3030

3131
requires:
3232
- libnotify
33-
- keybinder
33+
- keybinder

0 commit comments

Comments
 (0)