fix(build): rm build flags

This commit is contained in:
Andelf
2022-09-01 19:26:54 +08:00
parent ccfd76b2a8
commit fb98531c1c
2 changed files with 0 additions and 16 deletions

View File

@@ -28,11 +28,6 @@ on:
type: boolean
required: true
default: true
enable-file-sync:
description: 'Build with file sync support'
type: boolean
required: true
default: false
enable-file-sync-production:
description: 'File sync production mode'
type: boolean
@@ -128,7 +123,6 @@ jobs:
- name: Set Build Environment Variables (only when workflow_dispath)
if: ${{ github.event_name == 'workflow_dispatch' }}
run: |
echo "ENABLE_FILE_SYNC=${{ github.event.inputs.enable-file-sync }}" >> $GITHUB_ENV
echo "ENABLE_PLUGINS=${{ github.event.inputs.enable-plugins }}" >> $GITHUB_ENV
echo "ENABLE_FILE_SYNC_PRODUCTION=${{ github.event.inputs.enable-file-sync-production }}" >> $GITHUB_ENV
@@ -432,7 +426,6 @@ jobs:
if: ${{ github.event_name == 'schedule' || github.event.inputs.build-android == 'true' }}
with:
build-target: "${{ github.event.inputs.build-target }}"
enable-file-sync: "${{ github.event.inputs.enable-file-sync == 'true' }}"
enable-file-sync-production: "${{ github.event.inputs.enable-file-sync-production == 'true' }}"
secrets:
ANDROID_KEYSTORE: "${{ secrets.ANDROID_KEYSTORE }}"