diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 076bc2e..8314b9c 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -6,20 +6,20 @@ jobs: runs-on: ubuntu-latest steps: - run: | - mkdir -p ~/.ssh - eval $(ssh-agent -s) - echo "$SSH_PRIV_KEY" | tr -d '\r' | ssh-add - - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config + mkdir -p ~/.ssh + eval $(ssh-agent -s) + echo "$SSH_PRIV_KEY" | tr -d '\r' | ssh-add - + echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config - run: | - git config --global user.email ci@gitnet.fr - git config --global user.name CI + git config --global user.email ci@gitnet.fr + git config --global user.name CI - run: | - cp README.tpl.md README.md - ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md + cp README.tpl.md README.md + ./bin/rss -f https://www.deblan.io/RSS | head -n 10 >> README.md - run: | - git status - git add . - git commit -m "Build ${CI_BUILD_NUMBER}" || true - git remote add repo git@gitnet.fr:deblan/.profile.git - git push repo main || true + git status + git add . + git commit -m "Build ${CI_BUILD_NUMBER}" || true + git remote add repo git@gitnet.fr:deblan/.profile.git + git push repo main || true