2022-02-14 04:16:46 +00:00
|
|
|
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
|
2022-02-17 21:48:34 +00:00
|
|
|
env:
|
2022-02-14 04:16:46 +00:00
|
|
|
LINUX_APP_RELEASE_PATH: frontend/app_flowy/product/${{ github.ref_name }}/linux/Release
|
|
|
|
LINUX_ZIP_NAME: AppFlowy-linux-x86.tar.gz
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2022-02-17 21:48:34 +00:00
|
|
|
|
2022-02-16 09:23:30 +00:00
|
|
|
- name: Setup environment - Rust and Cargo
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2022-03-01 07:43:42 +00:00
|
|
|
toolchain: 'stable-2022-01-20'
|
2022-02-16 09:23:30 +00:00
|
|
|
|
2022-02-14 04:16:46 +00:00
|
|
|
- name: Setup environment - Flutter
|
|
|
|
uses: subosito/flutter-action@v2
|
|
|
|
with:
|
|
|
|
channel: 'stable'
|
2022-08-09 05:11:39 +00:00
|
|
|
flutter-version: '3.0.5'
|
2022-02-14 04:16:46 +00:00
|
|
|
|
2022-02-16 09:23:30 +00:00
|
|
|
- name: Pre build
|
2022-02-14 04:16:46 +00:00
|
|
|
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
|
2022-09-01 03:01:52 +00:00
|
|
|
sudo apt-get install keybinder-3.0
|
2022-02-14 04:16:46 +00:00
|
|
|
source $HOME/.cargo/env
|
|
|
|
cargo install --force cargo-make
|
|
|
|
cargo install --force duckscript_cli
|
|
|
|
cargo make flowy_dev
|
2022-02-17 21:48:34 +00:00
|
|
|
|
2022-02-14 04:16:46 +00:00
|
|
|
- name: Build Linux app
|
|
|
|
working-directory: frontend
|
|
|
|
run: |
|
|
|
|
flutter config --enable-linux-desktop
|
2022-07-08 15:20:42 +00:00
|
|
|
cargo make --env APP_VERSION=${{ github.ref_name }} --profile production-linux-x86_64 appflowy
|
2022-02-17 21:48:34 +00:00
|
|
|
|
2022-02-14 04:16:46 +00:00
|
|
|
- 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
|
|
|
|
|
2022-02-16 09:23:30 +00:00
|
|
|
build-macos-x86_64:
|
2022-02-14 04:16:46 +00:00
|
|
|
runs-on: macos-latest
|
|
|
|
needs: create-release
|
2022-02-17 21:48:34 +00:00
|
|
|
env:
|
2022-02-14 04:16:46 +00:00
|
|
|
MACOS_APP_RELEASE_PATH: frontend/app_flowy/product/${{ github.ref_name }}/macos/Release
|
2022-02-16 09:23:30 +00:00
|
|
|
MACOS_X86_ZIP_NAME: Appflowy-macos-x86_64.zip
|
2022-02-14 04:16:46 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2022-02-16 09:23:30 +00:00
|
|
|
|
|
|
|
- name: Setup environment - Rust and Cargo
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2022-03-01 07:43:42 +00:00
|
|
|
toolchain: 'stable-2022-01-20'
|
2022-02-17 21:48:34 +00:00
|
|
|
|
2022-02-14 04:16:46 +00:00
|
|
|
- name: Setup environment - Flutter
|
|
|
|
uses: subosito/flutter-action@v2
|
|
|
|
with:
|
|
|
|
channel: 'stable'
|
2022-08-09 05:11:39 +00:00
|
|
|
flutter-version: '3.0.5'
|
2022-02-14 04:16:46 +00:00
|
|
|
|
2022-02-16 09:23:30 +00:00
|
|
|
- name: Pre build
|
2022-02-14 04:16:46 +00:00
|
|
|
working-directory: frontend
|
|
|
|
run: |
|
|
|
|
source $HOME/.cargo/env
|
|
|
|
cargo install --force cargo-make
|
|
|
|
cargo install --force duckscript_cli
|
|
|
|
cargo make flowy_dev
|
2022-02-17 21:48:34 +00:00
|
|
|
|
2022-02-16 09:23:30 +00:00
|
|
|
- name: Build macOS app for x86_64
|
2022-02-14 04:16:46 +00:00
|
|
|
working-directory: frontend
|
|
|
|
run: |
|
|
|
|
flutter config --enable-macos-desktop
|
2022-05-30 12:48:28 +00:00
|
|
|
cargo make --env APP_VERSION=${{ github.ref_name }} --profile production-mac-x86_64 appflowy
|
2022-02-17 21:48:34 +00:00
|
|
|
|
2022-02-14 04:16:46 +00:00
|
|
|
- name: Archive macOS app
|
|
|
|
working-directory: ${{ env.MACOS_APP_RELEASE_PATH }}
|
2022-02-16 09:23:30 +00:00
|
|
|
run: zip -qr ${{ env.MACOS_X86_ZIP_NAME }} AppFlowy.app
|
2022-02-17 21:48:34 +00:00
|
|
|
|
2022-02-14 04:16:46 +00:00
|
|
|
- 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 }}
|
2022-02-16 09:23:30 +00:00
|
|
|
asset_path: ${{ env.MACOS_APP_RELEASE_PATH }}/${{ env.MACOS_X86_ZIP_NAME }}
|
|
|
|
asset_name: ${{ env.MACOS_X86_ZIP_NAME }}
|
2022-02-17 21:48:34 +00:00
|
|
|
asset_content_type: application/octet-stream
|
2022-09-07 14:03:32 +00:00
|
|
|
|
|
|
|
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-01-20'
|
|
|
|
|
|
|
|
- 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
|