mirror of
https://github.com/neongamerbot-qk/hackclub-nest
synced 2024-11-10 03:39:38 +00:00
21 lines
452 B
YAML
21 lines
452 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: |
|
|
export TERM=xterm
|
|
git pull
|