Skip to content

Commit

Permalink
ci: Adjust exclude lists
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Oct 18, 2024
1 parent a0f3510 commit 610f7be
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-FileCopyrightText: None
# SPDX-License-Identifier: CC0-1.0
/bin
/build
8 changes: 7 additions & 1 deletion .nextcloudignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
/.idea/
/.git/

/.github/
/.gitignore
/.nextcloudignore
/build/
/composer.json
/composer.json.license
/Makefile
/krankerl.toml
/README.md
/build/
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,14 @@ appstore:
mkdir -p $(sign_dir)
rsync -a \
--exclude=.git \
--exclude=.github \
--exclude=.gitignore \
--exclude=.nextcloudignore \
--exclude=/build \
--exclude=/composer.json \
--exclude=/composer.json.license \
--exclude=Makefile \
--exclude=krankerl.toml \
--exclude=README.md \
$(project_dir)/ $(sign_dir)/$(app_name)
@if [ -f $(cert_dir)/$(app_name).key ]; then \
Expand Down

0 comments on commit 610f7be

Please sign in to comment.