All checks were successful
Update pages on webserver / Update (push) Successful in 6s
20 lines
477 B
YAML
20 lines
477 B
YAML
name: Update pages on webserver
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
jobs:
|
|
build:
|
|
name: Update
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Updating site pages...
|
|
uses: appleboy/ssh-action@v1.2.1
|
|
with:
|
|
host: ${{ secrets.HOST }}
|
|
username: sadmin
|
|
password: ${{ secrets.PASSWORD }}
|
|
port: ${{ secrets.PORT }}
|
|
script: |
|
|
cd /home/sadmin/containers/isuckatcode-quartz/vault
|
|
git pull
|