We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c4de79 commit 82283c2Copy full SHA for 82283c2
.github/workflows/generator-android.yml
@@ -564,13 +564,13 @@ jobs:
564
# *.jks
565
# *aligned.apk
566
- name: Upload to FTP
567
- uses: genietim/ftp-action@releases/v2
568
- with:
569
- host: ${{ secrets.GEN_FTP_SERVER }}
570
- user: ${{ secrets.GEN_FTP_USER }}
571
- password: ${{ secrets.GEN_FTP_PASSWORD }}
572
- localDir: "./signed-apk/"
573
- remoteDir: "/root/rdgen/exe/${{ env.UUIDFOLDER }}/"
+ shell: bash
+ run: |
+ ftp -n -v "${{ secrets.GEN_FTP_USER }}" "${{ secrets.GEN_FTP_PASSWORD }}" ${{ secrets.GEN_FTP_SERVER }} <<EOF
+ cd /root/rdgen/exe/${{ env.UUIDFOLDER }}/
+ put ./signed-apk/${{ inputs.filename }}-${{ matrix.job.arch }}.apk
+ quit
+ EOF
574
575
- name: Report Status
576
uses: fjogeleit/http-request-action@v1
0 commit comments