Experiment/runner #2

Merged
vbevdev merged 16 commits from experiment/runner into main 2026-07-03 21:15:23 +00:00
Showing only changes of commit 9572e20a2c - Show all commits
+9 -2
View File
@@ -7,6 +7,7 @@ jobs:
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: echo "🏗️ Creating secrets..."
- name: Execute Remote SSH Commands - name: Execute Remote SSH Commands
uses: appleboy/ssh-action@v1.0.3 uses: appleboy/ssh-action@v1.0.3
with: with:
@@ -15,5 +16,11 @@ jobs:
password: ${{ secrets.SSH_PASSWORD }} password: ${{ secrets.SSH_PASSWORD }}
port: 22 port: 22
script: | script: |
cd /home/vbevdev/test cd ${{ secrets.DEPLOY_DIRECTORY }}
touch hello-there.txt mkdir secrets
cd secrets
echo "${{ secrets.BESZEL_AGENT_KEY }}" > beszel_agent_key.txt
echo "${{ secrets.BESZEL_AGENT_TOKEN }}" > beszel_agent_token.txt
echo "${{ secrets._GITEA_RUNNER_REGISTRATION_TOKEN }}" > gitea_runner_registration_token.txt
echo "${{ secrets.VAULTWARDEN_ADMIN_TOKEN }}" > vaultwarden_admin_token.txt
- run: echo "✅ Secrets created"