Skip to content

Commit 537cf46

Browse files
committed
Fix plugin build path
1 parent 5d2cebc commit 537cf46

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
--title "$TAG" \
8787
--notes "$BODY" \
8888
$PRERELEASE_FLAG \
89-
"build/sqlite-database-integration.zip"
89+
"build/plugin-sqlite-database-integration.zip"
9090
9191
- name: Delete release branch
9292
env:

.github/workflows/release-wporg.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ jobs:
3333
run: |
3434
gh release download "$RELEASE_TAG" \
3535
--repo "${{ github.repository }}" \
36-
--pattern "sqlite-database-integration.zip" \
36+
--pattern "plugin-sqlite-database-integration.zip" \
3737
--dir .
38-
unzip sqlite-database-integration.zip
38+
unzip plugin-sqlite-database-integration.zip
3939
4040
- name: Verify release metadata
4141
env:
4242
RELEASE_TAG: ${{ github.event.release.tag_name }}
4343
run: |
4444
VERSION="${RELEASE_TAG#v}"
45-
bash bin/verify-release-metadata.sh sqlite-database-integration "$VERSION"
45+
bash bin/verify-release-metadata.sh plugin-sqlite-database-integration "$VERSION"
4646
4747
- name: Deploy to WordPress.org
4848
uses: 10up/action-wordpress-plugin-deploy@v2
4949
env:
5050
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
5151
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
5252
SLUG: sqlite-database-integration
53-
BUILD_DIR: sqlite-database-integration
53+
BUILD_DIR: plugin-sqlite-database-integration

0 commit comments

Comments
 (0)