ci: Adjust exclude lists

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2024-10-18 23:32:28 +02:00
parent a0f3510726
commit 610f7be88e
No known key found for this signature in database
GPG key ID: F72FA5B49FFA96B0
3 changed files with 15 additions and 2 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
# SPDX-FileCopyrightText: None # SPDX-FileCopyrightText: None
# SPDX-License-Identifier: CC0-1.0 # SPDX-License-Identifier: CC0-1.0
/bin /bin
/build

View file

@ -3,6 +3,12 @@
/.idea/ /.idea/
/.git/ /.git/
/Makefile /.github/
/README.md /.gitignore
/.nextcloudignore
/build/ /build/
/composer.json
/composer.json.license
/Makefile
/krankerl.toml
/README.md

View file

@ -39,8 +39,14 @@ appstore:
mkdir -p $(sign_dir) mkdir -p $(sign_dir)
rsync -a \ rsync -a \
--exclude=.git \ --exclude=.git \
--exclude=.github \
--exclude=.gitignore \
--exclude=.nextcloudignore \
--exclude=/build \ --exclude=/build \
--exclude=/composer.json \
--exclude=/composer.json.license \
--exclude=Makefile \ --exclude=Makefile \
--exclude=krankerl.toml \
--exclude=README.md \ --exclude=README.md \
$(project_dir)/ $(sign_dir)/$(app_name) $(project_dir)/ $(sign_dir)/$(app_name)
@if [ -f $(cert_dir)/$(app_name).key ]; then \ @if [ -f $(cert_dir)/$(app_name).key ]; then \