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
5 changes: 5 additions & 0 deletions .changeset/ten-guests-wonder.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wpengine/wp-graphql-content-blocks": patch
---

Tested WordPress 6.8.1 and fixed a release issue with the plugin artifact
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,22 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Prepare release zip without parent directory
if: steps.changesets.outputs.published == 'true'
run: |
mkdir -p tmp_release_dir
unzip -q "@wpengine/wp-graphql-content-blocks.zip" -d tmp_release_dir
cd tmp_release_dir/@wpengine
zip -r ../../wp-graphql-content-blocks.zip .
cd ../..
rm -rf tmp_release_dir

- name: Upload plugin zip file
if: steps.changesets.outputs.published == 'true'
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: "@wpengine/wp-graphql-content-blocks.zip"
file: "wp-graphql-content-blocks.zip"
asset_name: wp-graphql-content-blocks.zip
tag: ${{ format('v{0}', fromJSON(steps.changesets.outputs.publishedPackages)[0].version) }}
overwrite: true
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: blakewpe, chriswiegman, joefusco, matthewguywright, TeresaGobble, thdespou, wpengine
Tags: faustjs, faust, headless, decoupled, gutenberg
Requires at least: 5.7
Tested up to: 6.8
Tested up to: 6.8.1
Stable tag: 4.8.3
Requires PHP: 7.4
License: GPLv2 or later
Expand Down
Loading