2 Commits

Author SHA1 Message Date
6454b79270 remove folder
All checks were successful
CI / test (push) Successful in 12s
Release SDSAT / release (push) Successful in 11s
2026-02-14 17:12:36 +01:00
354e54a6d3 remove __pycache__
All checks were successful
CI / test (push) Successful in 12s
Release SDSAT / release (push) Successful in 11s
2026-02-14 16:59:18 +01:00

View File

@@ -30,16 +30,17 @@ jobs:
run: |
set -eux
mkdir -p dist buildtmp/{bin,logs,update}
mkdir -p dist buildtmp/
# Copie uniquement le contenu de scripts/ dans buildtmp/bin
cp -r scripts/. buildtmp/bin/
cp -r scripts/. buildtmp/
# Exclure __init__.py
find buildtmp/bin -name "__init__.py" -delete
# Exclure __init__.py and remove buildtmp/__pycache__
find buildtmp/ -name "__init__.py" -delete
rm -R "buildtmp/__pycache__"
# Metadata
cat > buildtmp/update/BUILD_INFO.txt <<EOF
cat > buildtmp/BUILD_INFO.txt <<EOF
REPO=${{ gitea.event.repository.name }}
TAG=${{ gitea.ref_name }}
COMMIT=${{ gitea.sha }}