From fb6596f72f79ad11dea320938dddf8f3db2ca269 Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Sun, 30 Mar 2025 20:19:42 +0300 Subject: [PATCH] fix deploy --- .gitea/workflows/deploy.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index e1cf98b..ee3b21c 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -42,8 +42,10 @@ jobs: tags: git.neur0tx.site/neur0toxine/vegapokerbot:latest - name: Deploy - if: ${{ success() }} - container: alpine:latest - run: | - apk add --no-cache curl - curl -H "${{ secrets.DEPLOYER_AUTH }}" ${{ secrets.DEPLOYER_URL }} \ No newline at end of file + uses: actions/ssh-action@v1 + with: + host: ${{ secrets.DEPLOYER_HOST }} + username: ${{ secrets.DEPLOYER_USERNAME }} + key: ${{ secrets.DEPLOYER_KEY }} + port: ${{ secrets.DEPLOYER_PORT }} + script: bash vegapokerbot.sh \ No newline at end of file