Skip to content

Commit a9c0b0f

Browse files
committed
Add actions for pushing updates to WordPress.org.
1 parent 414e695 commit a9c0b0f

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

.gitattributes

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.github export-ignore
2+
/.wordpress-org export-ignore
3+
/bin export-ignore
4+
/dist export-ignore
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Plugin asset/readme update
2+
on:
3+
push:
4+
branches:
5+
- trunk
6+
jobs:
7+
trunk:
8+
name: Push to trunk
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: WordPress.org plugin asset/readme update
13+
uses: 10up/action-wordpress-plugin-asset-update@stable
14+
env:
15+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
16+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}

.github/workflows/push-deploy.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Deploy to WordPress.org
2+
on:
3+
push:
4+
tags:
5+
- "*"
6+
jobs:
7+
tag:
8+
name: New tag
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: WordPress Plugin Deploy
13+
uses: 10up/action-wordpress-plugin-deploy@stable
14+
env:
15+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
16+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
17+
SLUG: simple-page-sidebars

0 commit comments

Comments
 (0)