Skip to content

Commit 9046e4d

Browse files
authored
Remove some redundant files
1 parent 6fd553e commit 9046e4d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ jobs:
120120
# actually exclude it, so it must first be touched
121121
run: |
122122
touch ola-${{ matrix.id }}-source-tree.tar.gz
123-
tar --exclude=ola-${{ matrix.id }}-source-tree.tar.gz -cvzf ola-${{ matrix.id }}-source-tree.tar.gz .
123+
touch .git
124+
tar --exclude=ola-${{ matrix.id }}-source-tree.tar.gz --exclude=.git -cvzf ola-${{ matrix.id }}-source-tree.tar.gz .
124125
- name: SHA256 artifact archives
125126
if: always()
126127
run: sha256sum ola-*.tar.gz

.github/workflows/lint.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ jobs:
5959
# actually exclude it, so it must first be touched
6060
run: |
6161
touch ola-debian-stable-built-source-tree.tar.gz
62-
tar --exclude=ola-debian-stable-built-source-tree.tar.gz -cvzf ola-debian-stable-built-source-tree.tar.gz .
62+
touch .git
63+
tar --exclude=ola-debian-stable-built-source-tree.tar.gz --exclude=.git -cvzf ola-debian-stable-built-source-tree.tar.gz .
6364
- name: SHA256 artifact archive
6465
run: sha256sum ola-debian-stable-built-source-tree.tar.gz
6566
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)