personalpage/.github/workflows/main.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 16: mapping key "run" already defined at line 15

20 lines
498 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: echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
run: ssh-keyscan -H ${{ secrets.SSH_HOST }}
- name: connect and pull
run: echo "${{ secrets.SSH_USER }}"
- name: cleanup
run: rm -rf ~/.ssh