17 lines
491 B
Bash
17 lines
491 B
Bash
#!/bin/bash
|
|
# Script to clean up CI/development files
|
|
|
|
echo "Removing CI/development artifacts..."
|
|
|
|
rm -f gitea-registry-troubleshooting.md
|
|
rm -f gitea-packages-config.ini
|
|
rm -f find-gitea-local-ip.sh
|
|
rm -f example-multi-registry-workflow.yml
|
|
rm -f example-docker-compose.yml
|
|
rm -f example-distribution-README.md
|
|
rm -f docker-compose.example.yml
|
|
rm -f cleanup-github.sh
|
|
rm -f check-gitea-registry.sh
|
|
|
|
echo "Cleanup complete!"
|
|
echo "Removed CI/registry-specific files from webhook repository" |