more changes

This commit is contained in:
Brendan McDevitt 2025-03-28 07:59:02 -05:00
parent a331c6dac7
commit 86f69a9e66

View file

@ -13,6 +13,14 @@ jobs:
container:
image: node:18
steps:
- 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
with:
@ -24,6 +32,7 @@ jobs:
# If you have specific known hosts
ssh-known-hosts: git.mcdevitt.tech
ssh-strict: false
github-server-url: 'https://git.mcdevitt.tech'
- name: Setup Rust
run: |