From b9bd1f7ebd0ef58cd324386ff16daa9a8c09fd65 Mon Sep 17 00:00:00 2001 From: "martin.cholewa" Date: Fri, 26 Sep 2025 07:38:58 +0200 Subject: [PATCH] kookt --- .gitea/workflows/01_deploy_VM.yaml | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitea/workflows/01_deploy_VM.yaml diff --git a/.gitea/workflows/01_deploy_VM.yaml b/.gitea/workflows/01_deploy_VM.yaml new file mode 100644 index 0000000..e1eab77 --- /dev/null +++ b/.gitea/workflows/01_deploy_VM.yaml @@ -0,0 +1,31 @@ +name: Create VM at proxmox + +on: + workflow_dispatch: + inputs: + logLevel: + description: 'Log level' + required: true + default: 'warning' + type: choice + options: + - info + - warning + - debug + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + + - name: executing remote ssh commands using password + uses: appleboy/ssh-action@v1.2.0 + with: + host: 192.168.11.102 + username: root + password: ${{ secrets.PASSWORD }} + port: 22 + script: | + pveversion +