personalpage/.github/workflows/main.yml

24 lines
647 B
YAML
Raw Normal View History

2024-01-25 08:32:12 +07:00
on:
push:
branches:
- main
workflow_dispatch:
jobs:
run_pull:
name: run pull
runs-on: ubuntu-latest
steps:
- name: install ssh keys
# check this thread to understand why its needed:
# https://stackoverflow.com/a/70447517
run: |
2024-01-25 08:39:23 +07:00
touch ~/.ssh/id_rsa
echo "${{ env.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
ssh-keyscan -H ${{ env.SSH_HOST }} > ~/.ssh/known_hosts
2024-01-25 08:32:12 +07:00
- name: connect and pull
2024-01-25 08:39:23 +07:00
run: ssh ${{ env.SSH_USER }}@${{ env.SSH_HOST }} "cd ${{ env.WORK_DIR }} && git checkout ${{ env.MAIN_BRANCH }} && git pull && exit"
2024-01-25 08:32:12 +07:00
- name: cleanup
run: rm -rf ~/.ssh