remove folder
All checks were successful
CI / test (push) Successful in 12s
Release SDSAT / release (push) Successful in 11s

This commit is contained in:
2026-02-14 17:12:36 +01:00
parent 354e54a6d3
commit 6454b79270

View File

@@ -30,17 +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 and remove buildtmp/bin/__pycache__
find buildtmp/bin -name "__init__.py" -delete
rm -R "buildtmp/bin/__pycache__"
# 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 }}