diff --git a/.github/workflows/build-helloworld-vita.yml b/.github/workflows/build-helloworld-vita.yml
index 829388b1..826f2351 100644
--- a/.github/workflows/build-helloworld-vita.yml
+++ b/.github/workflows/build-helloworld-vita.yml
@@ -64,7 +64,11 @@ jobs:
           cmake .. -DDAWN_BUILD_TARGET=target-helloworld-vita
           make
 
-      - name: Done?
+      - name: Deploying
         run: |
-          cd build
-          tree
\ No newline at end of file
+          mkdir -p ~/.ssh
+          echo -e "${SSH_KEY//_/\\n}" > ~/.ssh/id_rsa
+          chmod og-rwx ~/.ssh/id_rsa
+          ssh-keyscan -H wish.moe >> ~/.ssh/known_hosts
+          ssh -t yourwishes@wish.moe "mkdir -p /home/yourwishes/Dawn/vita/debug"
+          scp ./build/dawnvita/HelloWorld.vpk yourwishes@wish.moe:/home/yourwishes/Dawn/vita/debug/
\ No newline at end of file