mirror of
https://github.com/neongamerbot-qk/hackclub-nest
synced 2024-11-22 08:23:40 +00:00
060ec3f62d
Co-authored-by: NeonGamerBot-QK <saahilattud@gmail.com> Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
20 lines
422 B
YAML
20 lines
422 B
YAML
name: Remote SSH Command
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: production
|
|
steps:
|
|
- name: Execute
|
|
uses: appleboy/ssh-action@v1.0.3
|
|
with:
|
|
host: hackclub.app
|
|
username: neon
|
|
passphrase: ${{ secrets.PASSWORD }}
|
|
key: ${{ secrets.ZEON_KEY }}
|
|
port: 22
|
|
script: |
|
|
git pull
|