diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml new file mode 100644 index 0000000..8a200eb --- /dev/null +++ b/.forgejo/workflows/deploy.yml @@ -0,0 +1,15 @@ +name: Deploy to Server +on: [push] + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Install/Update SSH + run: apt install ssh + - name: SSH into the Server + run: ssh-rsa -p ${{ secrets.SSH_PUB }} stickers@192.168.1.107 + - name: Set the directory + run: cd stickerpicker + - name: Pull changes + run: git pull \ No newline at end of file