mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
feat: create deb package for linux
This commit is contained in:
parent
43e4b1efad
commit
2cbd74c716
48
.github/workflows/release.yml
vendored
48
.github/workflows/release.yml
vendored
@ -37,6 +37,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
LINUX_APP_RELEASE_PATH: frontend/app_flowy/product/${{ github.ref_name }}/linux/Release
|
LINUX_APP_RELEASE_PATH: frontend/app_flowy/product/${{ github.ref_name }}/linux/Release
|
||||||
LINUX_ZIP_NAME: AppFlowy-linux-x86.tar.gz
|
LINUX_ZIP_NAME: AppFlowy-linux-x86.tar.gz
|
||||||
|
LINUX_PACKAGE_NAME: AppFlowy-linux-x86_${{ github.ref_name }}.deb
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@ -70,6 +71,42 @@ jobs:
|
|||||||
flutter config --enable-linux-desktop
|
flutter config --enable-linux-desktop
|
||||||
cargo make --env APP_VERSION=${{ github.ref_name }} --profile production-linux-x86_64 appflowy
|
cargo make --env APP_VERSION=${{ github.ref_name }} --profile production-linux-x86_64 appflowy
|
||||||
|
|
||||||
|
- name: Build Linux package
|
||||||
|
working-directory: ${{ env.LINUX_APP_RELEASE_PATH }}
|
||||||
|
run: |
|
||||||
|
mkdir -p package/opt && mv AppFlowy package/opt/
|
||||||
|
cd package && mkdir DEBIAN
|
||||||
|
printf 'Package: AppFlowy
|
||||||
|
Version: %s
|
||||||
|
Architecture: all
|
||||||
|
Essential: no
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: AppFlowy
|
||||||
|
Description: An Open Source Alternative to Notion\n
|
||||||
|
' "${{ github.ref_name }}" > DEBIAN/control
|
||||||
|
printf '#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Create a link in /usr/bin for quick access using terminal
|
||||||
|
ln -s /opt/AppFlowy/app_flowy /usr/bin/appflowy
|
||||||
|
|
||||||
|
# Update icon & executable path in desktop entry
|
||||||
|
grep -rl "\[CHANGE_THIS\]" /opt/AppFlowy/appflowy.desktop.temp | xargs sed -i "s/\[CHANGE_THIS\]/\/opt/"
|
||||||
|
|
||||||
|
# Add shortcut in applications drawer
|
||||||
|
mv /opt/AppFlowy/appflowy.desktop.temp /usr/share/applications/appflowy.desktop' > DEBIAN/postinst
|
||||||
|
printf '#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Remove symbolic link from /usr/bin
|
||||||
|
rm /usr/bin/appflowy
|
||||||
|
|
||||||
|
# Remove Desktop entry
|
||||||
|
rm /usr/share/applications/appflowy.desktop' > DEBIAN/postrm
|
||||||
|
cd ${{ env.LINUX_APP_RELEASE_PATH }} && dpkg-deb --build package ${{ env.LINUX_PACKAGE_NAME }}
|
||||||
|
|
||||||
- name: Upload Release Asset
|
- name: Upload Release Asset
|
||||||
id: upload-release-asset
|
id: upload-release-asset
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
@ -81,6 +118,17 @@ jobs:
|
|||||||
asset_name: ${{ env.LINUX_ZIP_NAME }}
|
asset_name: ${{ env.LINUX_ZIP_NAME }}
|
||||||
asset_content_type: application/octet-stream
|
asset_content_type: application/octet-stream
|
||||||
|
|
||||||
|
- name: Upload Release Asset Install Package
|
||||||
|
id: upload-release-asset-install-package
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ needs.create-release.outputs.upload_url }}
|
||||||
|
asset_path: ${{ env.LINUX_APP_RELEASE_PATH }}/${{ env.LINUX_PACKAGE_NAME }}
|
||||||
|
asset_name: ${{ env.LINUX_PACKAGE_NAME }}
|
||||||
|
asset_content_type: application/octet-stream
|
||||||
|
|
||||||
build-macos-x86_64:
|
build-macos-x86_64:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
needs: create-release
|
needs: create-release
|
||||||
|
Loading…
Reference in New Issue
Block a user