2024-10-25 12:08:47 +00:00
|
|
|
name: Push code
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: load ssh key
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2024-10-25 12:29:22 +00:00
|
|
|
echo "${{secrets.ZAPPYZEP_KEY}}" >> id_ed25519
|
2024-10-25 12:28:25 +00:00
|
|
|
- name: connect to zappyzep
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2024-10-25 12:30:54 +00:00
|
|
|
ssh -i id_ed25519 zappyzep@zappyzep.xyz /bin/bash
|
2024-10-25 12:28:25 +00:00
|
|
|
exit
|