Files
peikarband/restore-files.sh
Ehsan.Asadi 5fed68fc54
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
chore: add repository strategy doc and helper scripts
- Add docs/REPOSITORY_STRATEGY.md for future reference
- Add build-base-image.sh for local base image build
- Add restore-files.sh for pipeline file management
- Restore correct pipeline file names
2025-12-30 21:56:58 +03:30

19 lines
383 B
Bash
Executable File

#!/bin/bash
# Script to restore original pipeline file names
cd "$(dirname "$0")"
echo "═══ Restoring original file names ═══"
mv .woodpecker.yml .woodpecker-base.yml
mv .woodpecker-app.yml .woodpecker.yml
echo "✓ Files restored:"
ls -lh .woodpecker*.yml
echo ""
echo "Now you can:"
echo " 1. Commit the changes"
echo " 2. Push to trigger application pipeline"