Update .forgejo/workflows/CD.yml
All checks were successful
Continuous Deployment / deploy (push) Successful in 3s
All checks were successful
Continuous Deployment / deploy (push) Successful in 3s
This commit is contained in:
parent
630cbee68f
commit
873090c357
1 changed files with 4 additions and 1 deletions
|
@ -13,7 +13,10 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Configure SSH Key
|
- name: Configure SSH Key
|
||||||
run: echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa
|
run: |
|
||||||
|
mkdir -p ~/.ssh
|
||||||
|
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
|
||||||
|
chmod 600 ~/.ssh/id_rsa
|
||||||
|
|
||||||
- name: Deploy to Hosts
|
- name: Deploy to Hosts
|
||||||
run: |
|
run: |
|
||||||
|
|
Reference in a new issue