Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
10 changes: 5 additions & 5 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,8 @@ jobs:
echo "plugin_slug=$plugin" >> $GITHUB_OUTPUT

- name: Validate plugin detection
continue-on-error: false
run: |
if [ -z "${{ steps.plugin.outputs.plugin_slug }}" ]; then
echo "No plugin detected in changes"
exit 1
fi

if [ ! -d "plugins/${{ steps.plugin.outputs.plugin_slug }}" ]; then
echo "Plugin directory does not exist"
exit 1
Expand All @@ -68,6 +64,8 @@ jobs:
git add .
git commit -m "chore: apply version bump from changesets" || echo "No changes to commit"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Read package metadata
id: metadata
Expand Down Expand Up @@ -95,6 +93,8 @@ jobs:
echo "package_name=$package_name" >> $GITHUB_OUTPUT
echo "package_version=$package_version" >> $GITHUB_OUTPUT
echo "PLUGIN_DIR=$PLUGIN_DIR" >> $GITHUB_OUTPUT
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create Git tag
run: |
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@placeholder/toolkit",
"name": "@wpengine/hwp-toolkit",
"version": "1.0.0",
"private": true,
"workspaces": [
Expand Down
1 change: 0 additions & 1 deletion plugins/hwp-previews/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ See the [Actions & Filters documentation](ACTIONS_AND_FILTERS.md) for a comprehe

See [Testing.md](TESTING.md) for details on how to test the plugin.


## Screenshots

<details>
Expand Down
Loading