Files
wp-fix-plugin-does-not-exis…/.woodpecker.yml
Marcus Quinn bbdc06b4c1
Some checks failed
Build Release / Build and Create Release (push) Has been cancelled
Fix command formatting in Woodpecker CI configuration
2025-04-07 05:51:18 +01:00

32 lines
1.2 KiB
YAML

steps:
build:
image: alpine:latest
commands:
- apk add --no-cache bash zip
- VERSION=${CI_COMMIT_TAG#v}
- mkdir -p build/plugin-reference-cleaner
- cp plugin-reference-cleaner.php build/plugin-reference-cleaner/
- cp readme.txt build/plugin-reference-cleaner/
- cp LICENSE build/plugin-reference-cleaner/
- cp README.md build/plugin-reference-cleaner/
- if [ -f CHANGELOG.md ]; then cp CHANGELOG.md build/plugin-reference-cleaner/; fi
- cd build
- zip -r ../plugin-reference-cleaner-$VERSION.zip plugin-reference-cleaner
- cd ..
- echo "Build completed - plugin-reference-cleaner-$VERSION.zip"
- ls -la *.zip
release:
image: plugins/gitea-release
secrets: [ gitea_token ]
settings:
api_key:
from_secret: gitea_token
base_url: https://gitea.wpallstars.com
files:
- plugin-reference-cleaner-*.zip
title: "Release ${CI_COMMIT_TAG}"
note: "Plugin Reference Cleaner ${CI_COMMIT_TAG}\n\nSee [CHANGELOG.md](https://gitea.wpallstars.com/wpallstars/plugin-reference-cleaner/src/branch/main/CHANGELOG.md) for details."
when:
event: tag