build-deb.yml: Do not report git clone progress
Progress information is noisy and therefore does not provide any benefits to the CI/CD logs.
This commit is contained in:
parent
b184709e9e
commit
2e48cf6a6f
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Clone repository
|
- name: Clone repository
|
||||||
run: |
|
run: |
|
||||||
git clone \
|
git clone -q \
|
||||||
-b ${{ env.GITHUB_HEAD_REF }} \
|
-b ${{ env.GITHUB_HEAD_REF }} \
|
||||||
--depth 1 \
|
--depth 1 \
|
||||||
${{ env.GITHUB_SERVER_URL }}/${{ env.GITHUB_REPOSITORY }}.git \
|
${{ env.GITHUB_SERVER_URL }}/${{ env.GITHUB_REPOSITORY }}.git \
|
||||||
|
|
Loading…
Reference in a new issue