18 lines
No EOL
319 B
YAML
18 lines
No EOL
319 B
YAML
name: Push code
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: load ssh key
|
|
shell: bash
|
|
run: |
|
|
echo ${{secrets.ZAPPYZEP_KEY}} >> id_ed25519
|
|
- name: connect to zappyzep
|
|
shell: bash
|
|
run: |
|
|
ssh -i id_ed25519 zappyzep@zappyzep.xyz
|
|
exit |