Compare commits
2 Commits
680b0f46e5
...
0efc6ef560
| Author | SHA1 | Date | |
|---|---|---|---|
| 0efc6ef560 | |||
| 3e57ab3838 |
@@ -7,24 +7,18 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: [linux, x64, server-2]
|
||||||
steps:
|
steps:
|
||||||
- name: Deploy via SSH
|
- name: Deploy via SSH
|
||||||
env:
|
env:
|
||||||
VPN_HOST: ${{ secrets.VPN_HOST }}
|
VPN_HOST: ${{ secrets.VPN_HOST }}
|
||||||
VPN_USER: ${{ secrets.VPN_USER }}
|
VPN_USER: ${{ secrets.VPN_USER }}
|
||||||
VPN_SSH_KEY_B64: ${{ secrets.TEST_KEY_B64 }}
|
VPN_SSH_KEY: ${{ secrets.TEST_KEY }}
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
|
||||||
mkdir -p ~/.ssh
|
mkdir -p ~/.ssh
|
||||||
chmod 700 ~/.ssh
|
chmod 700 ~/.ssh
|
||||||
printf '%s' "$VPN_SSH_KEY_B64" | base64 -d > ~/.ssh/id_ci_runner
|
echo "$VPN_SSH_KEY" > ~/.ssh/id_ci_runner
|
||||||
chmod 600 ~/.ssh/id_ci_runner
|
chmod 600 ~/.ssh/id_ci_runner
|
||||||
VPN_USER="$(printf '%s' "$VPN_USER" | tr -d '\r\n')"
|
ssh-keyscan -H "$VPN_HOST" >> ~/.ssh/known_hosts
|
||||||
VPN_HOST="$(printf '%s' "$VPN_HOST" | tr -d '\r\n')"
|
|
||||||
echo "using user=${VPN_USER} host=${VPN_HOST}"
|
|
||||||
ssh-keyscan -H "$VPN_HOST" >> ~/.ssh/known_hosts || true
|
|
||||||
ssh-keygen -lf ~/.ssh/id_ci_runner
|
|
||||||
ssh -vvv -o IdentitiesOnly=yes -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ci_runner "${VPN_USER}@${VPN_HOST}" "echo ok"
|
|
||||||
|
|
||||||
ssh -o IdentitiesOnly=yes -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ~/.ssh/id_ci_runner "${VPN_USER}@${VPN_HOST}" "cd /srv/ip-ua && git fetch --all && git reset --hard origin/main && bash deploy/my-vpn/deploy.sh"
|
ssh -i ~/.ssh/id_ci_runner "$VPN_USER@$VPN_HOST" "cd /srv/ip-ua && git fetch --all && git reset --hard origin/main && bash deploy/my-vpn/deploy.sh"
|
||||||
|
|||||||
16
README.md
16
README.md
@@ -3,19 +3,3 @@
|
|||||||
ok
|
ok
|
||||||
|
|
||||||
# ci test
|
# ci test
|
||||||
|
|
||||||
# ci test 2
|
|
||||||
|
|
||||||
# ci test 3
|
|
||||||
|
|
||||||
# ci test 4
|
|
||||||
|
|
||||||
# ci test 5
|
|
||||||
|
|
||||||
# ci test 6
|
|
||||||
|
|
||||||
# ci test 7
|
|
||||||
|
|
||||||
# ci test 8
|
|
||||||
|
|
||||||
# ci test 9
|
|
||||||
|
|||||||
3
for_push_alexander
Normal file
3
for_push_alexander
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
for push
|
||||||
|
for push
|
||||||
|
for push
|
||||||
1
itsforpush
Normal file
1
itsforpush
Normal file
@@ -0,0 +1 @@
|
|||||||
|
h
|
||||||
Reference in New Issue
Block a user