From d5f23c5059d93159189b6a2c2d36866d77a3c20b Mon Sep 17 00:00:00 2001 From: Matthew McKinnon Date: Mon, 28 Oct 2024 22:03:07 +1000 Subject: [PATCH] fix: Deployment SSH keys --- .gitea/workflows/deploy-containers.yml | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/deploy-containers.yml b/.gitea/workflows/deploy-containers.yml index bbced7e..47afc9e 100644 --- a/.gitea/workflows/deploy-containers.yml +++ b/.gitea/workflows/deploy-containers.yml @@ -15,20 +15,19 @@ jobs: run: | apk update apk add --no-cache openssh + apk add --no-cache nodejs npm git bash openssh python3 py3-pip py3-passlib + python3 -m pip install --user ansible --break-system-packages export PATH="/root/.local/bin:$PATH" - # apk add --no-cache nodejs npm git bash openssh python3 py3-pip py3-passlib - # python3 -m pip install --user ansible --break-system-packages - - - # - name: Checkout code - # uses: actions/checkout@v4 - # with: - # fetch-depth: 0 + + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Deploy containers run: | - echo "${{ secrets.SSH_KNOWN_HOSTS }}" mkdir -p ~/.ssh + chmod 700 ~/.ssh echo "${{ secrets.SSH_KNOWN_HOSTS }}" >> ~/.ssh/known_hosts chmod 600 ~/.ssh/known_hosts eval $(ssh-agent -s) @@ -37,7 +36,6 @@ jobs: echo "StrictHostKeyChecking no" >> ~/.ssh/config echo "${{ secrets.ANSIBLE_VAULT_PASSWORD }}" > ~/.vault_password.txt echo "nameserver 10.10.10.1" > /etc/resolv.conf - cat ~/.ssh/known_hosts - # ./.gitea/workflows/deploy.sh "${{ github.event.before }}" "${{ github.sha }}" + ./.gitea/workflows/deploy.sh "${{ github.event.before }}" "${{ github.sha }}" \ No newline at end of file