personalpage/.github/workflows/main.yml
Fiky B 7a060e76f7
All checks were successful
/ run pull (push) Successful in 15s
Update .github/workflows/main.yml
2024-02-15 04:25:35 +00:00

19 lines
535 B
YAML

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: install -m 600 -D /dev/null ~/.ssh/id_rsa && echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa && ssh-keyscan -H ${{ secrets.SSH_HOST }}
- name: connect and pull
run: echo "${{ secrets.SSH_USER }}"
- name: cleanup
run: rm -rf ~/.ssh