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