21 lines
712 B
YAML
21 lines
712 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
run_pull:
|
|
name: run pull
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: cleanup first if any .ssh file before
|
|
run: rm -rf ~/.ssh
|
|
- name: install ssh keys
|
|
# check this thread to understand why its needed:
|
|
# https://stackoverflow.com/a/70447517
|
|
run: install -m 600 -D /dev/null ~/.ssh/id_rsa && echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa && ssh-keyscan -H ${{ secrets.SSH_HOST }} > ~/.ssh/known_hosts
|
|
- name: connect and pull
|
|
run: ssh fikyb-ssh@103.241.205.253 "cd /home/fikyb-ssh/htdocs/personalpage && git checkout main && git pull && exit"
|
|
- name: cleanup
|
|
run: rm -rf ~/.ssh |