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