diff --git a/.forgejo/workflows/daily-collect.yaml b/.forgejo/workflows/daily-collect.yaml index dd72043..b78481b 100644 --- a/.forgejo/workflows/daily-collect.yaml +++ b/.forgejo/workflows/daily-collect.yaml @@ -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: |