remove old ssh-port line

This commit is contained in:
Brendan McDevitt 2025-03-28 07:34:30 -05:00
parent 201c100ef3
commit b496aac3fc

View file

@ -13,13 +13,13 @@ jobs:
container:
image: node:18
steps:
# - name: Install Dependencies
#run: |
# apt-get update -y && apt-get install -y \
# git \
# openssh-client \
# curl \
# ca-certificates
- name: Git Setup
run: |
mkdir -p ~/.ssh
echo 'Host git.mcdevitt.tech' >> ~/.ssh/config
echo ' HostName git.mcdevitt.tech' >> ~/.ssh/config
echo ' Port 3022' >> ~/.ssh/config
cat ~/.ssh/config
- name: Checkout repository
uses: actions/checkout@v4
@ -31,7 +31,6 @@ jobs:
ssh-key: ${{ secrets.TOKEN_NAME }}
# If you have specific known hosts
ssh-known-hosts: git.mcdevitt.tech
ssh-port: 3022
- name: Setup Rust
run: |