Skip to content

Commit 2118388

Browse files
committed
Add GitHub Actions workflow to auto-deploy to WordPress.org SVN
https://claude.ai/code/session_017dSNaeTSnvyqASuzrKKAJQ
1 parent d65b8ef commit 2118388

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Deploy to WordPress.org
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
deploy:
10+
name: Deploy Plugin to WordPress.org SVN
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
17+
- name: Deploy to WordPress.org Plugin SVN
18+
uses: 10up/action-wordpress-plugin-deploy@stable
19+
env:
20+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
21+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
22+
SLUG: wpdevs-classic-editor-widgets

0 commit comments

Comments
 (0)