Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
63a2ec3ff9 | |||
f8cabf71b6 | |||
bbdc06b4c1 | |||
3bf5e3d4ab | |||
c27dbe9343 | |||
aa416c1950 |
35
.woodpecker.yml
Normal file
35
.woodpecker.yml
Normal file
@ -0,0 +1,35 @@
|
||||
clone:
|
||||
git:
|
||||
image: woodpeckerci/plugin-git
|
||||
debug: true
|
||||
|
||||
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
|
||||
environment:
|
||||
PLUGIN_API_KEY:
|
||||
from_secret: gitea_token
|
||||
PLUGIN_BASE_URL: https://gitea.wpallstars.com
|
||||
PLUGIN_FILES: plugin-reference-cleaner-*.zip
|
||||
PLUGIN_TITLE: "Release ${CI_COMMIT_TAG}"
|
||||
PLUGIN_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
|
@ -6,10 +6,12 @@ All notable changes to this project will be documented in this file.
|
||||
### Added
|
||||
- Support for multisite WordPress installations
|
||||
- Network admin page integration
|
||||
- Woodpecker CI integration for automated releases
|
||||
|
||||
### Improved
|
||||
- Error handling
|
||||
- User experience with better confirmation messages
|
||||
- Security by adding proper capability checks
|
||||
|
||||
## [1.0] - 2025-03-15
|
||||
### Added
|
||||
|
Reference in New Issue
Block a user