personalpage/.github/workflows/main.yml

26 lines
680 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:51:13 +07:00
echo "${{ env.SSH_HOST }}"
echo ${{ env.SSH_USER }}
echo ${{ vars.WORK_DIR }}
2024-01-25 08:42:07 +07:00
2024-01-25 08:46:30 +07:00
# ssh-keyscan -H ${{ env.SSH_HOST }} > ~/.ssh/known_hosts
2024-01-25 08:42:07 +07:00
# - 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