Skip to content

Commit e135a79

Browse files
committed
Don't include git config when upload directory to prepare release
Motivation: We recreate the gitconfig from scratch on each step so we should not include it Modifications: Add exclude Result: Cleanup
1 parent b552068 commit e135a79

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ jobs:
5959
uses: actions/upload-artifact@v4
6060
with:
6161
name: prepare-release-workspace
62-
path: ${{ github.workspace }}/**
62+
path: |
63+
${{ github.workspace }}/**
64+
!${{ github.workspace }}/.git/config
6365
include-hidden-files: true
6466

6567
stage-release-linux:

0 commit comments

Comments
 (0)