Remove input check upload on android snapshot workflow

Don't know why this input is needed but it seems it's not taken into account even with default value to true when the cron job triggers, we have already test build workflow for android apk along with debug signing for checking if build and signing succeeded. Check discord reports on missing/cannot update reports.
This commit is contained in:
kevlahnota
2024-11-16 09:39:28 +08:00
committed by GitHub
parent cf84ae5719
commit c11ca5d3fb

View File

@@ -8,11 +8,11 @@ on:
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false required: false
default: false default: false
upload_package: #upload_package:
type: boolean # type: boolean
description: 'Upload the completed Android package' # description: 'Upload the completed Android package'
required: false # required: false
default: true # default: true
schedule: schedule:
# * is a special character in YAML so you have to quote this string # * is a special character in YAML so you have to quote this string
- cron: '00 19 * * *' - cron: '00 19 * * *'
@@ -101,7 +101,7 @@ jobs:
- name: 📂 Sync files - name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@v4.3.4 uses: SamKirkland/FTP-Deploy-Action@v4.3.4
if: ${{ inputs.upload_package }} #if: ${{ inputs.upload_package }}
with: with:
server: ftp.cardforge.org server: ftp.cardforge.org
username: ${{ secrets.FTP_USERNAME }} username: ${{ secrets.FTP_USERNAME }}