“ls -al ~/.ssh”
Checking for existing SSH keys - GitHub Docs
1 Like
Hello
Please see the example config below which allows you to run this command
version: 2.1
# Define the jobs we want to run for this project
jobs:
build:
docker:
- image: cimg/base:2022.06
steps:
- checkout
- run: ls -al ~/.ssh
# Orchestrate our job run sequence
workflows:
build_and_test:
jobs:
- build
Kind Regards
Owen Oliver
1 Like