From 113b5fc6adea68c61c8e20ba47dd4bb322066b3f Mon Sep 17 00:00:00 2001 From: Benoit Donneaux Date: Thu, 23 May 2024 21:24:10 +0200 Subject: [PATCH] Avoid external actions for now Signed-off-by: Benoit Donneaux --- .gitea/workflows/jekyll.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/jekyll.yaml b/.gitea/workflows/jekyll.yaml index 48521aa..de2bf5c 100644 --- a/.gitea/workflows/jekyll.yaml +++ b/.gitea/workflows/jekyll.yaml @@ -23,7 +23,7 @@ jobs: id: install_docker run: | apt-get -q update - apt-get -q install -y docker-compose uuid-runtime + apt-get -q install -y docker-compose apt-get -q clean - name: Verify docker id: verify_docker @@ -46,11 +46,13 @@ jobs: - name: Load ssh key id: load_ssh_key #if: ${{ github.ref == 'main' }} - uses: LeastAuthority/ssh-agent-action@v1 - with: - private_key: ${{ secrets.WWW_DEPLOY_KEY }} + run: | + echo "${{ secrets.WWW_DEPLOY_KEY }}" > ~/.ssh/id_rsa + chmod 600 ~/.ssh/id_rsa + ssh-add ~/.ssh/id_rsa - name: Publish Jekyll site id: publish_site #if: ${{ github.ref == 'main' }} run: | - rsync -halvi -e "ssh -a -x -o StrictHostKeyChecking=no" ./_site/ www@lafs.eval.latfa.net:/var/www/site/ + rsync -halvi -e "ssh -a -x -o StrictHostKeyChecking=no" \ + ./_site/ www@lafs.eval.latfa.net:/var/www/site/