personalpage/.github/workflows/main.yml

27 lines
748 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:40:08 +07:00
install -m 600 -D /dev/null ~/.ssh/id_rsa
2024-01-25 08:39:23 +07:00
echo "${{ env.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
2024-01-25 08:42:07 +07:00
echo ${{ env.SSH_HOST }}
echo ${{ SSH_HOST }}
# ssh-keyscan -H ${{ env.SSH_HOST }} > ~/.ssh/known_hosts
# - name: connect and pull
# run: ssh ${{ env.SSH_USER }}@${{ env.SSH_HOST }} "cd ${{ env.WORK_DIR }} && git checkout ${{ env.MAIN_BRANCH }} && git pull && exit"
# - name: cleanup
# run: rm -rf ~/.ssh