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