clone silently log
Some checks failed
checks / Check & Test (Frontend + Backend) (push) Failing after 2s
Gitea Actions Demo / Explore-Gitea-Actions (pull_request) Successful in 3s
Gitea Actions Demo / Explore-Gitea-Actions-2 (pull_request) Successful in 2s
checks / Check & Test (Frontend + Backend) (pull_request) Failing after 2s

This commit is contained in:
Patrick
2025-10-29 17:13:07 +01:00
parent 7d32db0b08
commit 42a7910b3e

View File

@ -62,11 +62,14 @@ jobs:
echo "Cloning ALL_REPO_TOKEN $ALL_REPO_TOKEN" echo "Cloning ALL_REPO_TOKEN $ALL_REPO_TOKEN"
CLONE_URL_WITH_AUTH=$(echo "$CLONE_URL" | sed "s#https://#https://$ALL_REPO_TOKEN@#") CLONE_URL_WITH_AUTH=$(echo "$CLONE_URL" | sed "s#https://#https://$ALL_REPO_TOKEN@#")
git clone --quiet "$CLONE_URL_WITH_AUTH" . git clone --quiet "$CLONE_URL_WITH_AUTH" .
echo "${{ gitea.repository }}. cloned successfully." echo "${{ gitea.repository }} cloned successfully."
- name: List repo files and dependencies versions - name: List repo files
run: | run: |
ls . ls .
node -v
npm -v
yarn -v
- name: Done - name: Done
run: echo "Workflow finished." run: echo "Workflow finished."