This commit is contained in:
2025-06-24 01:42:50 +02:00
parent 634021854d
commit acea7fd46e

View File

@@ -9,6 +9,13 @@ jobs:
runs-on: ubuntu-latest
container: golang:1.24
steps:
- name: Setup SSH
run: |
mkdir -p ~/.ssh
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan your-server.com >> ~/.ssh/known_hosts
'
- name: Install node and go
run: apt update && apt -y install nodejs
- name: Check out repository code