mirror of
https://github.com/logseq/logseq.git
synced 2026-04-29 08:26:40 +00:00
feat!: File Sync (#5355)
- file sync for electron/ios/android - age encryption of both file content and file path - massive UI enhancement - corresponding CI tasks Co-authored-by: llcc <lzhes43@gmail.com> Co-authored-by: rcmerci <rcmerci@gmail.com> Co-authored-by: Tienson Qin <tiensonqin@gmail.com> Co-authored-by: Andelf <andelf@gmail.com> Co-authored-by: Gabriel Horner <gabriel@logseq.com>
This commit is contained in:
9
.github/workflows/build-android.yml
vendored
9
.github/workflows/build-android.yml
vendored
@@ -24,6 +24,11 @@ on:
|
||||
type: boolean
|
||||
required: true
|
||||
default: false
|
||||
enable-file-sync-production:
|
||||
description: 'File sync production mode'
|
||||
type: boolean
|
||||
required: true
|
||||
default: false
|
||||
workflow_call:
|
||||
inputs:
|
||||
build-target:
|
||||
@@ -32,6 +37,9 @@ on:
|
||||
enable-file-sync:
|
||||
description: 'Build with file sync support'
|
||||
type: boolean
|
||||
enable-file-sync-production:
|
||||
description: 'File sync production mode'
|
||||
type: boolean
|
||||
secrets:
|
||||
ANDROID_KEYSTORE:
|
||||
required: true
|
||||
@@ -104,6 +112,7 @@ jobs:
|
||||
- name: Set Build Environment Variables
|
||||
run: |
|
||||
echo "ENABLE_FILE_SYNC=${{ inputs.enable-file-sync == 'true' || github.event.inputs.enable-file-sync == 'true' }}" >> $GITHUB_ENV
|
||||
echo "ENABLE_FILE_SYNC_PRODUCTION=${{ inputs.enable-file-sync-production == 'true' || github.event.inputs.enable-file-sync-production == 'true' }}" >> $GITHUB_ENV
|
||||
|
||||
- name: Compile CLJS - android variant, use es6 instead of es-next
|
||||
run: yarn install && yarn release-android-app
|
||||
|
||||
Reference in New Issue
Block a user