mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
218 lines
7.4 KiB
YAML
218 lines
7.4 KiB
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
create-release:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
RELEASE_NOTES_PATH: /tmp/release_notes
|
|
outputs:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build release notes
|
|
run: |
|
|
touch ${{ env.RELEASE_NOTES_PATH }}
|
|
cat CHANGELOG.md | sed -e '/./{H;$!d;}' -e "x;/##\ Version\ ${{ github.ref_name }}/"'!d;' >> ${{ env.RELEASE_NOTES_PATH }}
|
|
|
|
- name: Create release
|
|
id: create_release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ github.ref }}
|
|
release_name: Release ${{ github.ref }}
|
|
body_path: ${{ env.RELEASE_NOTES_PATH }}
|
|
|
|
build-linux-x86:
|
|
runs-on: ubuntu-latest
|
|
needs: create-release
|
|
env:
|
|
LINUX_APP_RELEASE_PATH: frontend/app_flowy/product/${{ github.ref_name }}/linux/Release
|
|
LINUX_ZIP_NAME: AppFlowy-linux-x86.tar.gz
|
|
LINUX_PACKAGE_NAME: AppFlowy_${{ github.ref_name }}_linux-amd64.deb
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup environment - Rust and Cargo
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: 'stable-2022-04-07'
|
|
|
|
- name: Setup environment - Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: 'stable'
|
|
flutter-version: '3.0.5'
|
|
|
|
- name: Pre build
|
|
working-directory: frontend
|
|
run: |
|
|
sudo wget -qO /etc/apt/trusted.gpg.d/dart_linux_signing_key.asc https://dl-ssl.google.com/linux/linux_signing_key.pub
|
|
sudo apt-get update
|
|
sudo apt-get install -y build-essential libsqlite3-dev libssl-dev clang cmake ninja-build pkg-config libgtk-3-dev
|
|
sudo apt-get install keybinder-3.0
|
|
source $HOME/.cargo/env
|
|
cargo install --force cargo-make
|
|
cargo install --force duckscript_cli
|
|
cargo make flowy_dev
|
|
|
|
- name: Build Linux app
|
|
working-directory: frontend
|
|
run: |
|
|
flutter config --enable-linux-desktop
|
|
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
|
|
# Create control file
|
|
printf 'Package: AppFlowy
|
|
Version: %s
|
|
Architecture: amd64
|
|
Essential: no
|
|
Priority: optional
|
|
Maintainer: AppFlowy
|
|
Description: An Open Source Alternative to Notion\n' "${{ github.ref_name }}" > DEBIAN/control
|
|
|
|
mkdir -p usr/share/applications
|
|
# Update Exec & icon path in desktop entry
|
|
grep -rl "\[CHANGE_THIS\]" ./opt/AppFlowy/appflowy.desktop.temp | xargs sed -i "s/\[CHANGE_THIS\]/\/opt/"
|
|
# Add desktop entry in package
|
|
mv ./opt/AppFlowy/appflowy.desktop.temp ./usr/share/applications/appflowy.desktop
|
|
|
|
# Build
|
|
cd ../ && dpkg-deb --build --root-owner-group package ${{ env.LINUX_PACKAGE_NAME }}
|
|
|
|
- name: Upload Release Asset
|
|
id: upload-release-asset
|
|
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_ZIP_NAME }}
|
|
asset_name: ${{ env.LINUX_ZIP_NAME }}
|
|
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:
|
|
runs-on: macos-latest
|
|
needs: create-release
|
|
env:
|
|
MACOS_APP_RELEASE_PATH: frontend/app_flowy/product/${{ github.ref_name }}/macos/Release
|
|
MACOS_X86_ZIP_NAME: Appflowy-macos-x86_64.zip
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup environment - Rust and Cargo
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: 'stable-2022-04-07'
|
|
|
|
- name: Setup environment - Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: 'stable'
|
|
flutter-version: '3.0.5'
|
|
|
|
- name: Pre build
|
|
working-directory: frontend
|
|
run: |
|
|
source $HOME/.cargo/env
|
|
cargo install --force cargo-make
|
|
cargo install --force duckscript_cli
|
|
cargo make flowy_dev
|
|
|
|
- name: Build macOS app for x86_64
|
|
working-directory: frontend
|
|
run: |
|
|
flutter config --enable-macos-desktop
|
|
cargo make --env APP_VERSION=${{ github.ref_name }} --profile production-mac-x86_64 appflowy
|
|
|
|
- name: Archive macOS app
|
|
working-directory: ${{ env.MACOS_APP_RELEASE_PATH }}
|
|
run: zip --symlinks -qr ${{ env.MACOS_X86_ZIP_NAME }} AppFlowy.app
|
|
|
|
- name: Upload Release Asset
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ needs.create-release.outputs.upload_url }}
|
|
asset_path: ${{ env.MACOS_APP_RELEASE_PATH }}/${{ env.MACOS_X86_ZIP_NAME }}
|
|
asset_name: ${{ env.MACOS_X86_ZIP_NAME }}
|
|
asset_content_type: application/octet-stream
|
|
|
|
build-windows-x86_64:
|
|
runs-on: windows-latest
|
|
needs: create-release
|
|
env:
|
|
WINDOWS_APP_RELEASE_PATH: frontend\app_flowy\product\${{ github.ref_name }}\windows
|
|
WINDOWS_ZIP_NAME: AppFlowy-windows-x86_64.zip
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup environment - Rust and Cargo
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: 'stable-2022-04-07'
|
|
|
|
- name: Setup environment - Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: 'stable'
|
|
flutter-version: '3.0.5'
|
|
|
|
- name: Pre build
|
|
working-directory: frontend
|
|
run: |
|
|
vcpkg integrate install
|
|
cargo install --force cargo-make
|
|
cargo install --force duckscript_cli
|
|
cargo make flowy_dev
|
|
|
|
- name: Build Windows app
|
|
working-directory: frontend
|
|
run: |
|
|
flutter config --enable-windows-desktop
|
|
cargo make --env APP_VERSION=${{ github.ref_name }} --profile production-windows-x86 appflowy
|
|
|
|
- uses: vimtor/action-zip@v1
|
|
with:
|
|
files: ${{ env.WINDOWS_APP_RELEASE_PATH }}\
|
|
dest: ${{ env.WINDOWS_APP_RELEASE_PATH }}\${{ env.WINDOWS_ZIP_NAME }}
|
|
|
|
- name: Upload Release Asset
|
|
id: upload-release-asset
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ needs.create-release.outputs.upload_url }}
|
|
asset_path: ${{ env.WINDOWS_APP_RELEASE_PATH }}\${{ env.WINDOWS_ZIP_NAME }}
|
|
asset_name: ${{ env.WINDOWS_ZIP_NAME }}
|
|
asset_content_type: application/octet-stream
|