Compare commits

...

2 Commits

Author SHA1 Message Date
RoyceDa
73f32cf429 Merge branch 'main' of https://git.rosetta.im/Rosetta/desktop into main 2026-02-17 20:23:33 +02:00
RoyceDa
9a15383d65 CI/CD 2026-02-17 20:21:14 +02:00

View File

@@ -19,12 +19,13 @@ jobs:
run: npm install
- name: Build the application
run: npm run kernel:win
- name: Upload build on SSH
uses: appleboy/scp-action@master
- name: Upload build to SFTP
uses: wlixcc/SFTP-Deploy-Action@v1.2.4
with:
host: ${{ secrets.SSH_HOST }}
server: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
port: ${{ secrets.SSH_PORT }}
password: ${{ secrets.SSH_PASSWORD }}
source: "/dist/builds/win/x64/Rosetta-*.exe"
target: ${{ secrets.SSH_TARGET_DIR }}
port: ${{ secrets.SSH_PORT }}
local_path: ./dist/builds/win/x64/*
remote_path: ${{ secrets.SSH_TARGET_DIR }}
sftpArgs: '-o ConnectTimeout=5'