Skip to content

Commit 690a71f

Browse files
committed
Fix incorrect placement of workflow step
Signed-off-by: Shyamsundar Gadde <[email protected]>
1 parent c97c8cd commit 690a71f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/bump-wordpress-tested-up-to.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,6 @@ jobs:
6868
6969
echo "version=$LOCAL_TESTED_UP_TO" >> $GITHUB_OUTPUT
7070
71-
- name: Copy readme.txt to workspace root for SVN upload
72-
run: cp "./plugins/$PLUGIN_SLUG/readme.txt" "$GITHUB_WORKSPACE/readme.txt"
73-
7471
- name: Prepare and update readme.txt
7572
env:
7673
LOCAL_TESTED_UP_TO: ${{ steps.extract-tested-up-to.outputs.version }}
@@ -83,6 +80,9 @@ jobs:
8380
echo "Changes made to readme.txt:"
8481
diff -u /tmp/wp-org-readme.txt "./plugins/$PLUGIN_SLUG/readme.txt" || true
8582
83+
- name: Copy readme.txt to workspace root for SVN upload
84+
run: cp "./plugins/$PLUGIN_SLUG/readme.txt" "$GITHUB_WORKSPACE/readme.txt"
85+
8686
- name: Push to WordPress.org
8787
uses: 10up/action-wordpress-plugin-asset-update@stable
8888
env:

0 commit comments

Comments
 (0)