Skip to content

Commit fcbada9

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

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
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 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 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

0 commit comments

Comments
 (0)