Compare commits

..

3 Commits

Author SHA1 Message Date
b988fbbec0 Update release workflow to include .wordpress-org directory
Some checks failed
ci/woodpecker/push/woodpecker Pipeline is pending
Build Release / Build and Create Release (push) Has been cancelled
Build Release / Deploy to WordPress.org (push) Has been cancelled
ci/woodpecker/tag/woodpecker Pipeline was successful
2025-04-14 19:28:20 +01:00
ac3e47a147 Fix release workflow to check if directories exist before copying
Some checks failed
ci/woodpecker/push/woodpecker Pipeline is pending
Build Release / Build and Create Release (push) Has been cancelled
Build Release / Deploy to WordPress.org (push) Has been cancelled
ci/woodpecker/tag/woodpecker Pipeline was successful
2025-04-14 19:26:49 +01:00
b05d01da92 Update release workflow to include new directories
Some checks failed
ci/woodpecker/push/woodpecker Pipeline is pending
Build Release / Build and Create Release (push) Has been cancelled
Build Release / Deploy to WordPress.org (push) Has been cancelled
ci/woodpecker/tag/woodpecker Pipeline was successful
2025-04-14 19:24:46 +01:00

View File

@ -28,7 +28,21 @@ jobs:
cp readme.txt build/wp-fix-plugin-does-not-exist-notices/
cp LICENSE build/wp-fix-plugin-does-not-exist-notices/
cp README.md build/wp-fix-plugin-does-not-exist-notices/
cp -r assets build/wp-fix-plugin-does-not-exist-notices/
cp -r admin build/wp-fix-plugin-does-not-exist-notices/
cp -r includes build/wp-fix-plugin-does-not-exist-notices/
# Copy directories if they exist
if [ -d "assets" ]; then
cp -r assets build/wp-fix-plugin-does-not-exist-notices/
fi
if [ -d "languages" ]; then
cp -r languages build/wp-fix-plugin-does-not-exist-notices/
fi
if [ -d ".wordpress-org" ]; then
cp -r .wordpress-org build/wp-fix-plugin-does-not-exist-notices/
fi
- name: Create ZIP file
run: |
@ -46,7 +60,7 @@ jobs:
wp-fix-plugin-does-not-exist-notices-${{ steps.get_version.outputs.VERSION }}.zip
body: |
Fix 'Plugin file does not exist.' Notices v${{ steps.get_version.outputs.VERSION }}
See [CHANGELOG.md](https://github.com/wpallstars/wp-fix-plugin-does-not-exist-notices/blob/main/CHANGELOG.md) for details.
# Deploy to WordPress.org
@ -57,7 +71,7 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: WordPress Plugin Deploy
id: deploy
uses: 10up/action-wordpress-plugin-deploy@stable