forked from rustdesk/rustdesk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d299840
commit 3659f2f
Showing
2 changed files
with
49 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -849,14 +849,21 @@ jobs: | |
# files: | | ||
# rustdesk*-${{ matrix.job.arch }}.dmg | ||
|
||
- name: Upload to FTP | ||
uses: SamKirkland/[email protected] | ||
with: | ||
server: ${{ secrets.FTP_SERVER }} | ||
username: ${{ secrets.FTP_USERNAME }} | ||
password: ${{ secrets.FTP_PASSWORD }} | ||
local-dir: ./ | ||
server-dir: macOS/ | ||
# - name: Upload to FTP | ||
# uses: SamKirkland/[email protected] | ||
# with: | ||
# server: ${{ secrets.FTP_SERVER }} | ||
# username: ${{ secrets.FTP_USERNAME }} | ||
# password: ${{ secrets.FTP_PASSWORD }} | ||
# local-dir: ./ | ||
# server-dir: macOS/ | ||
|
||
- name: upload to ftp | ||
run: | | ||
ftp_server="ftp://${{ secrets.FTP_USERNAME }}:${{ secrets.FTP_PASSWORD }}@${{ secrets.FTP_SERVER }}/macOS" | ||
for file in *.dmg; do | ||
curl -T "$file" "$ftp_server/$file" | ||
done | ||
# publish_unsigned: | ||
# needs: | ||
|
@@ -1693,14 +1700,21 @@ jobs: | |
mv "$name" /workspace/"${name%%.rpm}-suse.rpm" | ||
done | ||
- name: Upload to FTP | ||
uses: SamKirkland/[email protected] | ||
with: | ||
server: ${{ secrets.FTP_SERVER }} | ||
username: ${{ secrets.FTP_USERNAME }} | ||
password: ${{ secrets.FTP_PASSWORD }} | ||
local-dir: output/ | ||
server-dir: linux/${{ matrix.job.arch }}/ | ||
# - name: Upload to FTP | ||
# uses: SamKirkland/[email protected] | ||
# with: | ||
# server: ${{ secrets.FTP_SERVER }} | ||
# username: ${{ secrets.FTP_USERNAME }} | ||
# password: ${{ secrets.FTP_PASSWORD }} | ||
# local-dir: output/ | ||
# server-dir: linux/${{ matrix.job.arch }}/ | ||
|
||
- name: upload to ftp | ||
run: | | ||
ftp_server="ftp://${{ secrets.FTP_USERNAME }}:${{ secrets.FTP_PASSWORD }}@${{ secrets.FTP_SERVER }}/linux/${{ matrix.job.arch }}" | ||
for file in *.deb *.rpm; do | ||
curl -T "$file" "$ftp_server/$file" | ||
done | ||
# - name: Upload deb | ||
# uses: actions/upload-artifact@master | ||
|
@@ -1935,14 +1949,21 @@ jobs: | |
cp "$name" "${name%%.deb}-${{ matrix.job.arch }}-sciter.deb" | ||
done | ||
- name: Upload to FTP | ||
uses: SamKirkland/[email protected] | ||
with: | ||
server: ${{ secrets.FTP_SERVER }} | ||
username: ${{ secrets.FTP_USERNAME }} | ||
password: ${{ secrets.FTP_PASSWORD }} | ||
local-dir: output/ | ||
server-dir: linux-sciter/${{ matrix.job.arch }}/ | ||
# - name: Upload to FTP | ||
# uses: SamKirkland/[email protected] | ||
# with: | ||
# server: ${{ secrets.FTP_SERVER }} | ||
# username: ${{ secrets.FTP_USERNAME }} | ||
# password: ${{ secrets.FTP_PASSWORD }} | ||
# local-dir: output/ | ||
# server-dir: linux-sciter/${{ matrix.job.arch }}/ | ||
|
||
- name: upload to ftp | ||
run: | | ||
ftp_server="ftp://${{ secrets.FTP_USERNAME }}:${{ secrets.FTP_PASSWORD }}@${{ secrets.FTP_SERVER }}/linux-sciter/${{ matrix.job.arch }}" | ||
for file in *.deb *.rpm; do | ||
curl -T "$file" "$ftp_server/$file" | ||
done | ||
# - name: Upload deb | ||
# uses: actions/upload-artifact@master | ||
|
4 changes: 4 additions & 0 deletions
4
flutter/android/app/src/main/res/values/ic_launcher_background.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<color name="ic_launcher_background">#ffffff</color> | ||
</resources> |