Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
- 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
19 lines
383 B
Bash
Executable File
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"
|
|
|