CI: Do not store .git directory in artifacts

gitlab-runner warns about that:

 > Uploading artifacts...
 > WARNING: Part of .git directory is on the list of files to archive
 > WARNING: This may introduce unexpected problems
This commit is contained in:
Luca Bacci 2025-07-01 17:24:03 +02:00
parent 34858870fe
commit 04e1c76110

View file

@ -155,6 +155,9 @@ fedora image:
when: "always"
paths:
- "*"
exclude:
- ".git*"
- ".git/**/*"
fedora build shared:
extends:
@ -397,6 +400,9 @@ vs2019 shared amd64:
artifacts:
paths:
- "*"
exclude:
- ".git*"
- ".git/**/*"
vs2019 static amd64:
extends: '.build windows'