ci: add pubignore for each package

This commit is contained in:
Hugo Pointcheval 2023-04-13 16:23:44 +02:00
parent 973eefa7bc
commit 9f260b8d0b
Signed by: hugo
GPG Key ID: 3AAC487E131E00BC
17 changed files with 30 additions and 0 deletions

5
.pubignore Normal file
View File

@ -0,0 +1,5 @@
new_version.sh
.latest_version
.vscode/
example/
models/

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -0,0 +1 @@
../../.pubignore

View File

@ -32,6 +32,11 @@ for package in "$PACKAGES_DIR"/*; do
rm "$package/.gitignore"
fi
# Remove .pubignore file if it exists
if [ -f "$package/.pubignore" ]; then
rm "$package/.pubignore"
fi
# Remove AUTHORS file if it exists
if [ -f "$package/AUTHORS" ]; then
rm "$package/AUTHORS"

View File

@ -37,6 +37,12 @@ for package in "$PACKAGES_DIR"/*; do
ln -s ../../.gitignore .gitignore
fi
# Create symbolic link to the main .pubignore file if it does not already
# exist
if [ ! -f .pubignore ]; then
ln -s ../../.pubignore .pubignore
fi
# Create symbolic link to the main AUTHORS file if it does not already
# exist