From 0c3859724d0c57c32158db261ae343a377cef3db Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Sat, 9 Dec 2023 01:35:32 +0100 Subject: [PATCH] Try update? --- .gitea/workflows/container.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/container.yaml b/.gitea/workflows/container.yaml index 00f6b56..1acdc7a 100644 --- a/.gitea/workflows/container.yaml +++ b/.gitea/workflows/container.yaml @@ -27,8 +27,10 @@ on: type: string PIPELINE_WORKER_SSH_KEY: required: true + type: string PIPELINE_WORKER_KNOWN_HOSTS: required: true + type: string jobs: release-image: @@ -53,6 +55,7 @@ jobs: exit 1 fi + - run: apt-get update - name: Setting up SSH if: ${{ hashFiles('requirements_private.txt') != '' }} uses: https://github.com/shimataro/ssh-key-action@v2.5.1 @@ -62,7 +65,7 @@ jobs: known_hosts: ${{ secrets.PIPELINE_WORKER_KNOWN_HOSTS }} config: | Host gitfub - HostName ${{ inputs.DOCKER_REG_DOMAIN }} + HostName gitfub.space User ${{ secrets.DOCKER_USERNAME }} - name: Checkout