mirror of
https://github.com/nextcloud/talk_matterbridge.git
synced 2025-12-17 21:12:08 +01:00
ci: Adjust exclude lists
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
a0f3510726
commit
610f7be88e
3 changed files with 15 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
6
Makefile
6
Makefile
|
|
@ -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 \
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue